item_db_equip.sql 795 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022
  1. #
  2. # Table data for table `item_db`
  3. #
  4. 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);
  5. 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);
  6. 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);
  7. 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);
  8. 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);
  9. 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);
  10. 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);
  11. 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);
  12. 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);
  13. 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);
  14. 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);
  15. 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);
  16. 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);
  17. 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);
  18. 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);
  19. 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);
  20. 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);
  21. 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);
  22. 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);
  23. 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);
  24. 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);
  25. 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);
  26. 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;');
  27. 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;');
  28. 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);
  29. 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);
  30. 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);
  31. 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;');
  32. 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);
  33. 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;\nbonus bDoubleRate,25;\nbonus2 bAddRace,RC_DemiHuman,5;\nbonus2 bAddRace,RC_Player_Human,5;');
  34. 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;\nbonus2 bAddEff,Eff_Freeze,500;\nbonus2 bAddEff2,Eff_Freeze,10;\nskill "MG_COLDBOLT",3;\nbonus3 bAutoSpell,"MG_COLDBOLT",3,100;');
  35. 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;\nbonus2 bComaClass,Class_Normal,10;');
  36. 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;\nskill "MG_FIREBOLT",3;\nbonus3 bAutoSpell,"MG_FIREBOLT",3,100;');
  37. 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;\nbonus bIgnoreDefRace,RC_Plant;');
  38. 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;\nbonus bStr,2;\nbonus bDef,1;');
  39. 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;\nbonus2 bHPDrainRate,1000,1;\nbonus2 bSPLossRate,15,10000;');
  40. 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;\nbonus bLuk,10;\nbonus bDex,-1;\nbonus bAtkEle,Ele_Holy;');
  41. 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;\nbonus2 bAddEle,Ele_Ghost,15;\nbonus3 bAutoSpell,"MG_STONECURSE",3,100;\nbonus2 bAddEff,Eff_Stone,10;\nbonus bDex,3;');
  42. 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;\nbonus2 bHPLossRate,35,10000;');
  43. 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;\nbonus2 bAddClass,Class_Boss,50;\nbonus bAllStats,2;');
  44. 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;\nbonus2 bSPVanishRate,30,30;\nbonus bSPDrainValue,-1;\nbonus bUnbreakableWeapon;');
  45. 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;');
  46. 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;');
  47. 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;\nbonus3 bAddMonsterDropItem,544,RC_Fish,4000;');
  48. 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;\nbonus bVit,2;');
  49. 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);
  50. 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);
  51. 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;\nbonus bUnbreakableWeapon;');
  52. 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);
  53. 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);
  54. 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);
  55. 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);
  56. 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);
  57. 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);
  58. 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);
  59. 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);
  60. 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);
  61. 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);
  62. 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;\nbonus bUnbreakableWeapon;');
  63. 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;\nbonus bAtkEle,Ele_Holy;');
  64. 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;\nbonus bUnbreakableWeapon;');
  65. 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);
  66. 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;\nbonus bAspdRate,8;\nbonus2 bAddEff2,Eff_Curse,10;');
  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 (1165,'Masamune','Masamune','Weapon','2hSword',20,1000,200,1,true,true,true,true,true,4,48,true,'bonus bFlee,30;\nbonus bStr,-5;\nbonus bAspd,2;\nbonus bDefRate,-67;\nbonus bDef2Rate,-67;');
  68. 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;\nbonus2 bAddRace,RC_Dragon,15;');
  69. 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;\nbonus bDef,1;\nbonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;');
  70. 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;');
  71. 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;\nbonus bIgnoreDefRace,RC_Player_Human;\nbonus2 bAddRace,RC_DemiHuman,20;\nbonus2 bAddRace,RC_Player_Human,20;\nbonus2 bSubRace,RC_DemiHuman,-10;\nbonus2 bSubRace,RC_Player_Human,-10;\nbonus bAtkEle,Ele_Dark;');
  72. 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;\nbonus bDef,10;');
  73. 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;');
  74. 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);
  75. 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;\nbonus bAspdRate,8;');
  76. 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;\nbonus bIgnoreDefRace,RC_Player_Human;\nbonus2 bAddRace,RC_DemiHuman,20;\nbonus2 bAddRace,RC_Player_Human,20;\nbonus2 bSubRace,RC_DemiHuman,-10;\nbonus2 bSubRace,RC_Player_Human,-10;\nbonus bAtkEle,Ele_Dark;');
  77. 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;\nif (readparam(bStr)>=80)\n bonus bBreakArmorRate,500;');
  78. 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;\nbonus3 bAutoSpell,"AL_DECAGI",1,30;');
  79. 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;');
  80. 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;\nbonus bDef,1;\nbonus3 bAutoSpell,"MG_LIGHTNINGBOLT",3,100;');
  81. 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;\nbonus bIgnoreDefRace,RC_Player_Human;\nbonus2 bAddRace,RC_DemiHuman,20;\nbonus2 bAddRace,RC_Player_Human,20;\nbonus2 bSubRace,RC_DemiHuman,-10;\nbonus2 bSubRace,RC_Player_Human,-10;\nbonus bAtkEle,Ele_Dark;');
  82. 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;\nbonus2 bAddRace,RC_Dragon,15;');
  83. 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;\nif (JobLevel>=70)\n autobonus "{ bonus bBaseAtk,50; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";\nif (getrefine()>8) {\n bonus bCastrate,-20;\n bonus bDelayRate,-20;\n}');
  84. 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;\nautobonus "{ bonus bCritical,100; bonus bBaseAtk,50; }",1,5000,0,"{ specialeffect2 EF_FIRESPLASHHIT; }";\nbonus bHPGainValue,100;');
  85. 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;\nbonus2 bAddRace,RC_DemiHuman,55;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  86. 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;\nbonus2 bAddRace,RC_DemiHuman,55;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus bCritAtkRate,20;\nbonus bUnbreakableWeapon;');
  87. 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;\nbonus3 bAutoSpell,"WZ_FROSTNOVA",5,50;\nautobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;');
  88. 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;\nbonus bAgi,2;\nbonus bFlee2,20;\nbonus3 bAutoSpell,"NPC_HELLPOWER",1,10;\nbonus4 bAutoSpell,"NPC_HELLPOWER",1,10,0;\nif (getrefine()>8)\n bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",2,20;\nelse\n bonus3 bAutoSpell,"NPC_VAMPIRE_GIFT",1,20;');
  89. 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;\nbonus2 bAddRace,RC_Player_Human,70;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,25;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n bonus3 bAutoSpell,"LK_CONCENTRATION",max(getskilllv("LK_CONCENTRATION"),1),30;\n bonus3 bAutoSpell,"LK_AURABLADE",max(getskilllv("LK_AURABLADE"),1),30;\n}');
  90. 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) {\n bonus2 bSkillAtk,"SM_BASH",50;\n}\nif (getskilllv("KN_BOWLINGBASH") == 10) {\n bonus2 bSkillAtk,"KN_BOWLINGBASH",50;\n}\nbonus bStr,1;\nbonus bDex,1;');
  91. 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) {\n bonus bBaseAtk,20;\n}');
  92. 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;');
  93. 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);
  94. 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);
  95. 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);
  96. 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);
  97. 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);
  98. 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);
  99. 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);
  100. 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);
  101. 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);
  102. 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);
  103. 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);
  104. 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);
  105. 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);
  106. 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);
  107. 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);
  108. 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);
  109. 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);
  110. 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);
  111. 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);
  112. 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);
  113. 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);
  114. 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;');
  115. 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;\nbonus bFlee2,20;');
  116. 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;');
  117. 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;');
  118. 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;');
  119. 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;\nbonus2 bAddRace,RC_Plant,15;\nbonus2 bSubRace,RC_Plant,15;');
  120. 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;\nbonus bIgnoreDefRace,RC_Player_Human;\nbonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;\nbonus2 bSubRace,RC_Demon,-10;');
  121. 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;\nbonus3 bAddMonsterDropItem,517,RC_Brute,5000;');
  122. 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;');
  123. 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;\nbonus bInt,5;\nbonus bMatkRate,10;');
  124. 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;\nbonus bMaxSPrate,15;\nbonus bAspdRate,2;\nbonus bAtkEle,Ele_Dark;');
  125. 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;\nbonus2 bSubRace,RC_Demon,5;\nbonus2 bSubRace,RC_DemiHuman,-10;\nbonus2 bSubRace,RC_Player_Human,-10;');
  126. 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;\nbonus bSPDrainValue,3;');
  127. 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;');
  128. 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;\nbonus2 bAddEle,Ele_Wind,10;\nbonus bUnbreakableWeapon;');
  129. 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;\nbonus bFlee2,5;\nbonus bDefRate,-50;\nbonus bDef2Rate,-50;');
  130. 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;');
  131. 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;\nbonus2 bAddEff,Eff_Poison,3000;');
  132. 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;');
  133. 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;');
  134. 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;');
  135. 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);
  136. 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;\nbonus bDex,1;');
  137. 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);
  138. 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);
  139. 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;');
  140. 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;');
  141. 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;');
  142. 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);
  143. 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);
  144. 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;');
  145. 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;');
  146. 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);
  147. 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);
  148. 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;\nbonus2 bAddEff,Eff_Freeze,500;');
  149. 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;\nbonus2 bAddEff,Eff_Blind,500;');
  150. 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;\nbonus2 bAddEff,Eff_Silence,500;');
  151. 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;\nbonus2 bAddEff,Eff_Sleep,500;');
  152. 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;');
  153. 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;\nbonus2 bAddRace,RC_Player_Human,50;\nbonus bDef,3;\nbonus bFlee,5;\nbonus bFlee2,2;');
  154. 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;');
  155. 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;\nbonus2 bAddEff,Eff_Curse,200;\nbonus bCritical,-1;\nbonus bUnbreakableWeapon;');
  156. 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;');
  157. 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;\nbonus bIgnoreDefRace,RC_Player_Human;\nbonus bFlee,-(readparam(bAgi)+BaseLevel);\nbonus bHPrecovRate,-100;\nbonus bSPrecovRate,-100;');
  158. 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;\nbonus2 bAddRace,RC_Player_Human,50;\nbonus bDef,3;\nbonus bFlee,5;\nbonus bFlee2,2;');
  159. 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;\nbonus2 bAddRace,RC_Player_Human,70;\nbonus bDef,3;\nbonus bFlee,5;\nbonus bFlee2,2;\nbonus bAspdRate,5;');
  160. 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)\n bonus3 bAutoSpell,"NPC_CRITICALWOUND",2,100;\nelse\n bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100;');
  161. 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;\nbonus3 bAutoSpell,"NPC_DRAGONFEAR",1,30;');
  162. 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;\nbonus3 bAutoSpell,"ST_FULLSTRIP",1,150;');
  163. 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)\n bonus3 bAutoSpell,"NPC_WIDEBLEEDING",2,30;\nelse\n bonus3 bAutoSpell,"NPC_WIDEBLEEDING",1,30;');
  164. 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;');
  165. 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;\nbonus bIgnoreDefRace,RC_Player_Human;\nbonus2 bHPRegenRate,3,5000;');
  166. 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;\nbonus2 bAddEff,Eff_Curse,5000;\nbonus bCritical,-1;\nbonus bUnbreakableWeapon;');
  167. 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;\nbonus2 bAddEff,Eff_Freeze,500;');
  168. 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;\nbonus2 bAddEff,Eff_Blind,500;');
  169. 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;\nbonus2 bAddEff,Eff_Silence,500;');
  170. 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;\nbonus2 bAddEff,Eff_Sleep,500;');
  171. 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;\nbonus bDex,1;\nbonus bLuk,1;\nbonus2 bAddRace,RC_DemiHuman,70;\nbonus2 bAddRace,RC_Player_Human,70;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  172. 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;\nbonus bDex,1;\nbonus bLuk,1;\nbonus2 bAddRace,RC_DemiHuman,70;\nbonus2 bAddRace,RC_Player_Human,70;\nbonus bCritAtkRate,20;\nbonus bAspdRate,5;\nbonus bUnbreakableWeapon;');
  173. 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;\nbonus2 bAddRace,RC_Player_Human,70;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8)\n autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";');
  174. 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;\nbonus2 bAddRace,RC_Player_Human,70;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bCriticalAddRace,RC_DemiHuman,5;\n bonus2 bCriticalAddRace,RC_Player_Human,5;\n}\nif (getrefine()>8)\n autobonus "{ bonus bAspdRate,100; }",70,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";');
  175. 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;\nbonus bAspdRate,3;');
  176. 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;\nif (getskilllv("AS_SONICBLOW")) {\n bonus3 bAutoSpell,"AS_SONICBLOW",getskilllv("AS_SONICBLOW"),5;\n}\nelse {\n bonus3 bAutoSpell,"AS_SONICBLOW",1,5;\n}');
  177. 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) {\n bonus bHit,10;\n}\nbonus2 bSkillAtk,"ASC_METEORASSAULT",20;');
  178. 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;\nbonus2 bAddSize,Size_All,40;');
  179. 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);
  180. 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);
  181. 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);
  182. 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);
  183. 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;\nbonus2 bSubRace,RC_Player_Human,5;\nbonus3 bAddMonsterDropItem,517,RC_Brute,3000;');
  184. 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;\nbonus bLuk,2;');
  185. 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;\nbonus bAspdRate,5;');
  186. 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);
  187. 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);
  188. 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;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n bonus bAspdRate,5;\n}\nif (getrefine()>8) {\n bonus bAspdRate,5;\n bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;\n bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200;\n}');
  189. 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) {\n bonus bBaseAtk,20;\n}\nif (readparam(bDex)>=90) {\n bonus bCritical,5;\n}\nif (readparam(bDex)>=90 || readparam(bLuk)>=90) {\n bonus2 bSkillAtk,"MC_MAMMONITE",15;\n}');
  190. 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;');
  191. 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;');
  192. 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;');
  193. 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;\nbonus bStr,10;');
  194. 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);
  195. 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);
  196. 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);
  197. 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);
  198. 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);
  199. 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);
  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`,`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);
  201. 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);
  202. 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);
  203. 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);
  204. 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);
  205. 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);
  206. 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;\nbonus bSpeedRate,25;');
  207. 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;\nbonus2 bAddEff,Eff_Stun,1500;');
  208. 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;\nbonus2 bComaRace,RC_Demon,50;\nbonus2 bCriticalAddRace,RC_Undead,50;');
  209. 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;\nskill "AL_HEAL",3;\nbonus2 bAddRace,RC_Demon,3;');
  210. 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;\nbonus bIgnoreDefRace,RC_Brute;\nbonus2 bComaRace,RC_Brute,40;\nbonus bIgnoreDefRace,RC_Player_Doram;\nbonus2 bComaRace,RC_Player_Doram,40;');
  211. 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;\nskill "ITM_TOMAHAWK",1;');
  212. 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;\nbonus2 bComaRace,RC_Player_Human,30;\nbonus2 bSPDrainValueRace,RC_DemiHuman,2;\nbonus2 bSPDrainValueRace,RC_Player_Human,2;\nbonus2 bSPGainRace,RC_DemiHuman,20;\nbonus2 bSPGainRace,RC_Player_Human,20;');
  213. 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;\nbonus bUseSPrate,100;\nif (readparam(bStr)>=95) {\n bonus bBaseAtk,340;\n bonus2 bAddEff,Eff_Stun,3000;\n bonus bBreakArmorRate,500;\n}');
  214. 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;\nbonus bUseSPrate,100;\nif (readparam(bStr)>=95) {\n bonus bBaseAtk,340;\n bonus2 bAddEff,Eff_Stun,3000;\n bonus bBreakArmorRate,500;\n}');
  215. 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;\nskill "AL_HEAL",3;\nbonus2 bAddRace,RC_Demon,3;\nbonus bStr,10;\nbonus bSpeedRate,25;');
  216. 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;\nbonus bSpeedRate,25;\nbonus bAspdRate,5;');
  217. 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;\nskill "ITM_TOMAHAWK",1;');
  218. 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;\nbonus2 bSubSize,Size_Large,15;');
  219. 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();\nbonus bAspdRate,5;\nif (Class == Job_Whitesmith || Class == Job_Creator)\n bonus3 bAutoSpell,"BS_HAMMERFALL",3,30;');
  220. 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();\nbonus bAspdRate,getrefine();\nbonus3 bAutoSpell,"NPC_PULSESTRIKE",5,20;');
  221. 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;\nbonus bHit,20;\nbonus2 bAddSkillBlow,"MC_MAMMONITE",5;\nbonus2 bAddEff,Eff_Stun,2000;');
  222. 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;\nbonus2 bAddRace,RC_DemiHuman,55;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  223. 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;\nbonus2 bAddRace,RC_DemiHuman,55;\nbonus2 bAddRace,RC_Player_Human,55;\nautobonus "{ bonus bBreakArmorRate,10000; }",20,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";\nbonus bUnbreakableWeapon;');
  224. 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);
  225. 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;\nbonus2 bAddRace,RC_Player_Human,70;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,25;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,50;\n}\nif (getrefine()>8) {\n bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,100;\n bonus4 bAutoSpellOnSkill,"MC_MAMMONITE","NPC_CRITICALWOUND",2,200;\n bonus4 bAutoSpellOnSkill,"WS_CARTTERMINATION","NPC_CRITICALWOUND",2,200;\n}');
  226. 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;\nbonus bVit,10;\nbonus2 bAddRace,RC_Undead,10;\nbonus3 bAutoSpell,"AL_BLESSING",5,50;');
  227. 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) {\n bonus bBaseAtk,10;\n}\nif (getskilllv("BS_SWORD") == 3) {\n bonus bBaseAtk,10;\n}\nif (getskilllv("BS_TWOHANDSWORD") == 3) {\n bonus bBaseAtk,10;\n}\nif (getskilllv("BS_KNUCKLE") == 3) {\n bonus bBaseAtk,10;\n}\nif (getskilllv("BS_SPEAR") == 3) {\n bonus bBaseAtk,10;\n}\nif (getskilllv("BS_AXE") == 3) {\n bonus bBaseAtk,10;\n}\nif (getskilllv("BS_MACE") == 3) {\n bonus bBaseAtk,10;\n}\nbonus bVit,2;');
  228. 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());');
  229. 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) {\n bonus bBaseAtk,400;\n bonus2 bAddEff,Eff_Stun,3000;\n bonus bAspdRate,-25;\n bonus bUseSPrate,100;\n bonus bBreakArmorRate,500;\n}');
  230. 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;\nif (readparam(bStr)>=95) {\n bonus bHit,10;\n bonus bAspdRate,3;\n}');
  231. 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;');
  232. 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;');
  233. 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;\nbonus bStr,10;');
  234. 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);
  235. 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);
  236. 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);
  237. 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);
  238. 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);
  239. 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);
  240. 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);
  241. 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);
  242. 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);
  243. 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);
  244. 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);
  245. 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);
  246. 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;\nbonus bPerfectHitRate,25;\nbonus bHit,30;');
  247. 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;\nbonus bMaxHP,800;\nbonus bMaxSP,-50;');
  248. 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;\nbonus2 bAddEle,Ele_Neutral,25;');
  249. 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;\nbonus bSPGainValue,5;');
  250. 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;\nbonus bInt,2;\nbonus bDex,1;');
  251. 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;\nbonus bPerfectHitRate,25;\nbonus bHit,30;');
  252. 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;\nbonus bInt,2;\nbonus bDex,1;');
  253. 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;\nbonus2 bAddEff,Eff_Bleeding,500;\nskill "TF_DETOXIFY",1;\nbonus bUnbreakableWeapon;');
  254. 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;\nbonus2 bAddRace,RC_DemiHuman,20;\nbonus2 bAddRace,RC_Player_Human,20;\nskill "KN_PIERCE",3;');
  255. 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;\nbonus bIgnoreDefRace,RC_Player_Doram;\nbonus3 bAddMonsterDropItem,517,RC_Brute,1000;\nbonus3 bAutoSpell,"LK_JOINTBEAT",3,100;');
  256. 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;');
  257. 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;\nbonus2 bAddSize,Size_Medium,20;');
  258. 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;\nbonus2 bAddRace,RC_DemiHuman,95;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (BaseJob == Job_Crusader)\n bonus bAspdRate,20;');
  259. 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;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n bonus bAspdRate,10;\n}\nif (getrefine()>8) {\n if (BaseJob == Job_Knight)\n bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200;\n else if (BaseJob == Job_Crusader)\n bonus3 bAutoSpell,"PA_PRESSURE",5,100;\n}');
  260. 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;\nbonus bStr,2;');
  261. 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;\nbonus2 bAddEff,Eff_Bleeding,500;\nskill "TF_DETOXIFY",1;\nbonus bUnbreakableWeapon;');
  262. 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;\nbonus bIgnoreDefRace,RC_Player_Doram;\nbonus3 bAddMonsterDropItem,517,RC_Brute,1000;\nbonus3 bAutoSpell,"LK_JOINTBEAT",3,500;');
  263. 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;');
  264. 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;\nbonus bInt,2;\nbonus bDex,1;');
  265. 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;\nbonus bInt,2;\nbonus bDex,1;');
  266. 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);
  267. 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);
  268. 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);
  269. 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);
  270. 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);
  271. 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);
  272. 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);
  273. 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);
  274. 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);
  275. 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);
  276. 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);
  277. 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);
  278. 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);
  279. 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);
  280. 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);
  281. 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;\nbonus bHit,10;');
  282. 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;\nbonus2 bAddRace,RC_Player_Doram,10;\nbonus2 bAddRace,RC_DemiHuman,5;\nbonus2 bAddRace,RC_Player_Human,5;');
  283. 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;\nbonus2 bAddEff,Eff_Silence,200;\nbonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;');
  284. 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;\nbonus2 bAddRace,RC_DemiHuman,10;\nbonus2 bAddRace,RC_Player_Human,10;\nbonus2 bAddRace,RC_Angel,10;');
  285. 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;\nskill "AL_HEAL",5;\nbonus3 bAutoSpell,"MG_SOULSTRIKE",3,100;\nbonus2 bAddClass,Class_Boss,5;');
  286. 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;\nbonus3 bAutoSpell,"MG_FIREBALL",3,100;\nbonus bStr,3;');
  287. 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;\nbonus bAgi,2;\nbonus bMatkRate,15;');
  288. 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;\nbonus bDex,2;\nbonus bMatkRate,15;');
  289. 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;\nbonus2 bAddClass,Class_Boss,10;');
  290. 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);
  291. 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;\nbonus bHit,10;');
  292. 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;\nbonus2 bAddRace,RC_Demon,20;\nbonus2 bAddRace,RC_Undead,20;\nbonus2 bSubEle,Ele_Dark,10;\nbonus2 bSubRace,RC_Demon,10;\nbonus2 bSubRace,RC_Undead,10;\nbonus2 bAddEff2,Eff_Confusion,1000;\nbonus bHPGainValue,50;');
  293. 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;\nbonus bIgnoreDefClass,Class_Boss;\nbonus2 bAddRace,RC_DemiHuman,10;\nbonus2 bAddRace,RC_Player_Human,10;\nbonus3 bAutoSpell,"KN_PIERCE",5,30;');
  294. 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;\nbonus2 bAddRace,RC_Demon,20;\nbonus2 bAddRace,RC_Undead,20;\nbonus2 bSubEle,Ele_Dark,10;\nbonus2 bSubRace,RC_Demon,10;\nbonus2 bSubRace,RC_Undead,10;\nbonus2 bAddEff2,Eff_Confusion,1000;\nbonus bHPGainValue,50;');
  295. 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;\nbonus2 bAddClass,Class_Boss,10;');
  296. 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;\nbonus2 bAddEff,Eff_Silence,200;\nbonus3 bAutoSpell,"MG_THUNDERSTORM",3,100;');
  297. 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;\nbonus2 bAddRace,RC_DemiHuman,25;\nbonus2 bAddRace,RC_Player_Human,25;\nbonus bIgnoreDefRace,RC_DemiHuman;\nbonus bIgnoreDefRace,RC_Player_Human;\nbonus bUnbreakableWeapon;');
  298. 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;\nbonus bAspdRate,3;\nbonus2 bAddEff,Eff_Bleeding,300;\nbonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;\nskill "KN_SPEARSTAB",5;');
  299. 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;\nbonus bDef,getrefine()/2;');
  300. 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);
  301. 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;\nbonus2 bAddRace,RC_Player_Human,70;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,25;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n if (BaseJob == Job_Knight)\n bonus4 bAutoSpellOnSkill,"KN_PIERCE","NPC_CRITICALWOUND",2,200;\n else if (BaseJob == Job_Crusader)\n bonus3 bAutoSpell,"PA_PRESSURE",5,200;\n}');
  302. 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;');
  303. 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;\nbonus bIgnoreDefClass,Class_Boss;\nbonus2 bAddRace,RC_DemiHuman,10;\nbonus2 bAddRace,RC_Player_Human,10;\nbonus3 bAutoSpell,"KN_PIERCE",5,30;');
  304. 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);
  305. 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);
  306. 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);
  307. 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);
  308. 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);
  309. 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);
  310. 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);
  311. 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);
  312. 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);
  313. 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);
  314. 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);
  315. 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);
  316. 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);
  317. 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);
  318. 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);
  319. 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);
  320. 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);
  321. 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);
  322. 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);
  323. 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);
  324. 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);
  325. 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;');
  326. 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;\nbonus bDefRate,-67;\nbonus bDef2Rate,-67;');
  327. 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;\nbonus bUnbreakableWeapon;');
  328. 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;');
  329. 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;\nbonus2 bComaRace,RC_Undead,10;\nbonus2 bExpAddRace,RC_Undead,5;');
  330. 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;\nbonus2 bAddRace,RC_DemiHuman,10;\nbonus2 bAddRace,RC_Player_Human,10;\nbonus2 bAddEle,Ele_Earth,10;');
  331. 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;\nskill "PR_TURNUNDEAD",3;\nbonus3 bAutoSpell,"PR_TURNUNDEAD",3,100;\nbonus2 bSPDrainValueRace,RC_Undead,1;\nbonus2 bSPGainRace,RC_Undead,3;');
  332. 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);
  333. 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;\nbonus bDex,40;\nbonus bStr,15;\nbonus bAspdRate,10;\nbonus bUnbreakableWeapon;');
  334. 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;\nbonus2 bAddEff,Eff_Stun,100;\nbonus2 bAddEff,Eff_Poison,100;\nbonus2 bAddEff,Eff_Freeze,100;');
  335. 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;');
  336. 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;');
  337. 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;\nbonus2 bAddEff,Eff_Stun,100;\nbonus2 bAddEff,Eff_Poison,100;\nbonus2 bAddEff,Eff_Freeze,100;');
  338. 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;\nbonus bBreakWeaponRate,100;\nif (readparam(bStr)>=44) {\n bonus bBaseAtk,44;\n}');
  339. 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;');
  340. 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;\nbonus2 bAddRace,RC_Player_Human,30;\nbonus2 bAddRace,RC_Demon,40;\nbonus2 bAddRace,RC_Undead,40;');
  341. 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;\nbonus bDefRate,-67;\nbonus bDef2Rate,-67;');
  342. 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;\nbonus bUnbreakableWeapon;');
  343. 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;\nskill "PR_TURNUNDEAD",3;\nbonus3 bAutoSpell,"PR_TURNUNDEAD",3,100;\nbonus2 bSPDrainValueRace,RC_Undead,1;\nbonus2 bSPGainRace,RC_Undead,3;');
  344. 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;\nbonus2 bAddRace,RC_Undead,10;\nbonus2 bAddRace,RC_Demon,10;\nbonus3 bAutoSpell,"AL_CRUCIS",1+getrefine(),100;\nautobonus "{ bonus bBaseAtk,50; }",10,20000,BF_WEAPON,"{ specialeffect2 EF_BLOODDRAIN; }";');
  345. 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;\nbonus bDex,1;\nbonus2 bAddRace,RC_DemiHuman,75;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  346. 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;\nbonus bDex,1;\nbonus2 bAddRace,RC_DemiHuman,75;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus bUnbreakableWeapon;\nautobonus "{ bonus2 bAddEff,Eff_Stun,5000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";');
  347. 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) {\n bonus bAspdRate,4;\n bonus2 bAddEff,Eff_Stun,1500;\n bonus3 bAddMonsterDropItem,12065,RC_Plant,500;\n bonus3 bAddMonsterDropItem,12043,RC_Brute,500;\n bonus3 bAddMonsterDropItem,12069,RC_Fish,500;\n}');
  348. 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);
  349. 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;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n bonus bAspdRate,5;\n}\nif (getrefine()>8) {\n bonus2 bAddEff,Eff_Stun,2000;\n bonus bAspdRate,5;\n}');
  350. 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;\nbonus bStr,2;');
  351. 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");\nbonus bCritical,getskilllv("PR_MACEMASTERY")*2;\nbonus bInt,1;\nbonus bLuk,1;');
  352. 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);
  353. 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);
  354. 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;');
  355. 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);
  356. 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;');
  357. 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;');
  358. 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;');
  359. 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;');
  360. 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;\nbonus2 bAddEle,Ele_Holy,5;\nbonus2 bAddEle,Ele_Water,7;\nbonus2 bAddEle,Ele_Earth,7;\nbonus2 bAddEle,Ele_Fire,7;\nbonus2 bAddEle,Ele_Wind,7;');
  361. 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;');
  362. 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;\nbonus bIgnoreDefRace,RC_Dragon;\nbonus2 bSPGainRace,RC_Dragon,10;');
  363. 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;\nif (readparam(bStr)>=50)\n bonus bAspdRate,5;\nif (readparam(bInt)>=70)\n bonus bMatkRate,5;');
  364. 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;\nbonus bDex,2;');
  365. 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;\nbonus3 bAutoSpell,"AL_BLESSING",3+(getskilllv("AL_BLESSING")>3)*(getskilllv("AL_BLESSING")-3),20;');
  366. 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;\nbonus bAspdRate,5;');
  367. 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;\nbonus bInt,3;\nbonus bDex,2;\nbonus bCritical,20+((readparam(bLuk)*2)/10);');
  368. 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;\nbonus bStr,3;\nbonus bInt,3;\nbonus bLuk,-20;\nbonus2 bComaRace,RC_DemiHuman,10;\nbonus2 bComaRace,RC_Player_Human,10;\nbonus bAspdRate,getrefine();\nif (BaseJob == Job_Sage)\n bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;');
  369. 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;');
  370. 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;\nbonus bDex,2;\nbonus bMatkRate,20;');
  371. 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;');
  372. 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;');
  373. 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;');
  374. 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;');
  375. 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;\nbonus bInt,3;\nbonus bSPrecovRate,5;');
  376. 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;');
  377. 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;\nbonus bInt,1;\nbonus bMatkRate,15;\nbonus2 bAddRace,RC_DemiHuman,75;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  378. 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;\nbonus bInt,1;\nbonus bMatkRate,15;\nbonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25;\nbonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;\nbonus bUnbreakableWeapon;');
  379. 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;\nbonus2 bAddRace,RC_DemiHuman,80;\nbonus2 bAddRace,RC_Player_Human,80;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,25;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8)\n autobonus "{ bonus bBaseAtk,200; }",30,3000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";');
  380. 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;\nbonus2 bAddRace,RC_DemiHuman,80;\nbonus2 bAddRace,RC_Player_Human,80;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,25;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,25;\nbonus bUnbreakableWeapon;\nif (getrefine()>5)\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\nif (getrefine()>8) {\n bonus bMatkRate,5;\n bonus bCastrate,-5;\n bonus bDelayRate,-5;\n}');
  381. 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;\nbonus bMdef,2;\nbonus bMaxSPrate,10;');
  382. 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;\nbonus bStr,3;\nbonus bInt,3;\nbonus bLuk,-20;\nbonus2 bComaRace,RC_DemiHuman,10;\nbonus2 bComaRace,RC_Player_Human,10;\nbonus bAspdRate,getrefine();\nif (BaseJob == Job_Sage)\n bonus3 bAutoSpell,"NPC_HELLJUDGEMENT",5,20;');
  383. 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;\nbonus bInt,3;\nbonus bDex,2;\nbonus bCritical,20+((readparam(bLuk)*2)/10);\nbonus2 bAddSize,Size_All,40;');
  384. 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);
  385. 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);
  386. 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;\nbonus bBaseAtk,3800;\nbonus bMatkRate,200;\nbonus2 bHPDrainRate,1000,100;\nbonus2 bSPDrainRate,1000,20;\nbonus bHealPower,200;\nbonus2 bAddClass,Class_All,100;\nskill "WZ_STORMGUST",10;\nSkill "WZ_METEOR",10;\nSkill "WZ_VERMILION",10;\nskill "GM_SANDMAN",1;');
  387. 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;');
  388. 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;');
  389. 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;');
  390. 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;\nbonus bMatkRate,15;');
  391. 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;\nbonus bMatkRate,15;');
  392. 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;\nbonus bMatkRate,15;');
  393. 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;\nbonus bMatkRate,15;');
  394. 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;\nbonus bMatkRate,15;');
  395. 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;\nbonus bMatkRate,15;');
  396. 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;\nbonus bMatkRate,15;');
  397. 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;\nbonus bMatkRate,15;');
  398. 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;\nbonus bMatkRate,15;');
  399. 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;\nbonus bMatkRate,15;\nbonus bSPDrainValue,-2;');
  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 (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;\nbonus bMatkRate,15;');
  401. 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;\nbonus bAtkEle,Ele_Undead;\nbonus bMatkRate,15;');
  402. 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;\nbonus bCastrate,-5;');
  403. 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;\nbonus bMatkRate,15;\nbonus bMaxHP,300;');
  404. 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;\nbonus bMatkRate,15;\nbonus bMaxHP,400;');
  405. 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;\nbonus bMatkRate,15;\nbonus bMaxHP,300;');
  406. 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;\nbonus bMatkRate,15;\nbonus bMaxHP,400;');
  407. 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;\nbonus bMatkRate,25;');
  408. 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;\nbonus bMatkRate,25;');
  409. 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;\nbonus bInt,4;\nbonus bMatkRate,20;\nbonus bSPDrainValue,-1;');
  410. 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;\nbonus bDex,1;\nbonus bAtkEle,Ele_Undead;\nbonus bMatkRate,20;\nbonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine();\nif (getrefine()>=9) {\n bonus bMatkRate,3;\n bonus bMaxSP,300;\n}');
  411. 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;\nbonus bMatkRate,15;\nbonus bHealPower,(getrefine()*3/2);');
  412. 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;\nbonus bMatkRate,15;\nbonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine();\nbonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine();');
  413. 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;\nbonus2 bAddClass,Class_All,50;');
  414. 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;\nbonus bMatkRate,20;\nbonus bMaxHP,500;');
  415. 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;\nbonus bDex,1;');
  416. 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;\nbonus bInt,3;\nbonus bHealPower,5;\nautobonus "{ bonus2 bSPRegenRate,100,2000; bonus2 bHPRegenRate,50,2000; }",10,10000,BF_MAGIC,"{ specialeffect2 EF_HEAL; }";');
  417. 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;\nbonus bMatkRate,15;\nbonus2 bCastrate,"AL_HOLYLIGHT",-25;\nbonus2 bCastrate,"PR_TURNUNDEAD",-25;\nbonus2 bCastrate,"PR_MAGNUS",-25;');
  418. 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;\nbonus bDex,3;\nbonus bMatkRate,15;\nbonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25;\nbonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;\nbonus3 bAddEff,Eff_Stun,500,ATF_SKILL;\nbonus bUnbreakableWeapon;');
  419. 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;\nbonus bDex,3;\nbonus bMatkRate,15;\nbonus2 bMagicAddRace,RC_DemiHuman,15;\nbonus2 bMagicAddRace,RC_Player_Human,15;\nbonus3 bAddEff,Eff_Stun,500,ATF_SKILL;\nbonus bUnbreakableWeapon;');
  420. 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;\nbonus bHealPower,14;\nbonus2 bSPRegenRate,5,10000;\nbonus bUnbreakableWeapon;');
  421. 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;\nbonus bDex,2;\nbonus bMatkRate,15;\nbonus bDelayRate,-15;\nbonus2 bSPRegenRate,5,10000;\nbonus bUnbreakableWeapon;');
  422. 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;\nbonus bDex,3;\nbonus bMatkRate,20;\nbonus2 bIgnoreMdefClassRate,Class_Normal,getrefine();\nbonus2 bIgnoreMdefClassRate,Class_Boss,getrefine();\nbonus bDelayRate,-(getrefine()*3/2);');
  423. 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;\nbonus bInt,3;\nbonus bDex,2;\nbonus bSPrecovRate,8;\nif (getrefine()>9 )\n bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",3,5,BF_MAGIC,0;\nelse\n bonus5 bAutoSpell,"NPC_WIDESOULDRAIN",1,5,BF_MAGIC,0;');
  424. 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;\nbonus bMatkRate,15;\nbonus bHealPower,(getrefine()*3/2);');
  425. 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;');
  426. 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;\nbonus2 bMagicAddRace,RC_Player_Human,15;\nbonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25 + ((getrefine()>5) ? 5 : 0);\nbonus2 bIgnoreMdefRaceRate,RC_Player_Human,25 + ((getrefine()>5) ? 5 : 0);\nbonus bUnbreakableWeapon;\nif (getrefine()>8) {\n bonus bCastrate,-5;\n bonus bDelayRate,-5;\n bonus bMatkRate,5;\n}');
  427. 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;\nbonus bDelayRate,-10;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5;\n bonus bHealPower,5+(getrefine()-5)*2;\n}\nif (getrefine()>8)\n bonus5 bAutoSpellOnSkill,"AL_HEAL","AL_HEAL",10,100,1;\nif (getrefine()>9) {\n bonus bHealPower,10;\n}');
  428. 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;\nbonus bMatkRate,15;\nbonus bInt,2;');
  429. 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;\nbonus bInt,4;\nif (getrefine()>5) {\n bonus bInt,getrefine()-5;\n bonus bMaxHP,-200;\n bonus bMaxSP,-100;\n}');
  430. 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;\nbonus bMatkRate,15;\nbonus2 bIgnoreMdefClassRate,Class_Normal,10+getrefine();\nbonus2 bIgnoreMdefClassRate,Class_Boss,10+getrefine();');
  431. 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;\nbonus bDex,1;\nbonus bAtkEle,Ele_Undead;\nbonus bMatkRate,20;\nbonus3 bAutoSpellWhenHit,"NPC_WIDECURSE",5,10+getrefine();\nif (getrefine()>=9) {\n bonus bMatkRate,3;\n bonus bMaxSP,300;\n}');
  432. 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;\nbonus bMatkRate,15;\nbonus bMdef,getrefine();\nbonus2 bSkillAtk,"WZ_STORMGUST",getrefine();\nif (getrefine()>9)\n bonus2 bCastrate,"WZ_STORMGUST",-8;');
  433. 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;\nbonus bMatkRate,15;\nbonus bInt,4;\nbonus4 bAutoSpellOnSkill,"AL_HEAL","AL_BLESSING",max(getskilllv("AL_BLESSING"),1),20;');
  434. 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;\nbonus bInt,2;\nbonus bDex,1;\nif (getskilllv("SA_DRAGONOLOGY") == 5) {\n bonus bUseSPrate,-15;\n bonus bInt,3;\n}');
  435. 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);
  436. 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);
  437. 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;\nbonus2 bAddDamageClass,1113,500;\nbonus2 bAddDamageClass,1031,500;\nbonus2 bAddDamageClass,1242,500;');
  438. 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);
  439. 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);
  440. 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);
  441. 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);
  442. 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);
  443. 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);
  444. 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);
  445. 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);
  446. 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);
  447. 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;');
  448. 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);
  449. 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;');
  450. 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);
  451. 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);
  452. 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);
  453. 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;\nbonus bInt,5;\nskill "AL_CURE",1;\nskill "AL_HEAL",1;\nbonus2 bResEff,Eff_Poison,5000;\nbonus2 bResEff,Eff_Curse,5000;\nbonus2 bResEff,Eff_Silence,5000;\nbonus2 bResEff,Eff_Confusion,5000;\nbonus2 bResEff,Eff_Blind,5000;');
  454. 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);
  455. 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);
  456. 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);');
  457. 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;\nbonus bIgnoreDefRace,RC_Dragon;');
  458. 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;\nbonus bSPrecovRate,10;');
  459. 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);
  460. 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);
  461. 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;');
  462. 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;\nbonus bInt,5;\nskill "AL_CURE",1;\nskill "AL_HEAL",1;');
  463. 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;');
  464. 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;');
  465. 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);
  466. 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);
  467. 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;');
  468. 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;');
  469. 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;');
  470. 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; }";\nbonus2 bAddSkillBlow,"AC_CHARGEARROW",3;');
  471. 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;\nbonus2 bAddRace,RC_DemiHuman,55;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  472. 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;\nbonus bInt,10;\nbonus2 bAddRace,RC_DemiHuman,55;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus bUnbreakableWeapon;');
  473. 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;');
  474. 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;\nbonus2 bAddEff,Eff_Curse,400;');
  475. 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);
  476. 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;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bCritAtkRate,getrefine() * 2;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8)\n bonus2 bSkillAtk,"AC_DOUBLE",20;');
  477. 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;\nbonus bDex,2;');
  478. 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;\nbonus2 bSkillAtk,"AC_DOUBLE",10;\nbonus2 bSkillAtk,"AC_CHARGEARROW",10;');
  479. 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);
  480. 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);
  481. 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);
  482. 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);
  483. 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);
  484. 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);
  485. 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);
  486. 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);
  487. 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;');
  488. 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;');
  489. 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);
  490. 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);
  491. 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;\nbonus2 bAddRace,RC_Undead,5;\nbonus2 bAddEle,Ele_Water,10;\nbonus2 bAddEle,Ele_Earth,10;\nbonus2 bAddEle,Ele_Fire,10;\nbonus2 bAddEle,Ele_Wind,10;');
  492. 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;');
  493. 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;\nbonus bMaxHPrate,-2;\nbonus2 bAddEff,Eff_Bleeding,200;');
  494. 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;');
  495. 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;\nbonus2 bAddRace,RC_Undead,5;\nbonus2 bAddEle,Ele_Water,10;\nbonus2 bAddEle,Ele_Earth,10;\nbonus2 bAddEle,Ele_Fire,10;\nbonus2 bAddEle,Ele_Wind,10;\nbonus bAspdRate,5;');
  496. 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;');
  497. 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;');
  498. 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;');
  499. 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;');
  500. 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;\nbonus2 bSkillAtk,"MO_CHAINCOMBO",15;\nbonus2 bSkillAtk,"MO_COMBOFINISH",20;');
  501. 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;\nbonus bAgi,1;\nbonus2 bAddRace,RC_DemiHuman,95;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus4 bAutoSpell,"CH_SOULCOLLECT",1,5,0;\nbonus bUnbreakableWeapon;');
  502. 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;\nbonus bInt,1;\nbonus2 bAddRace,RC_DemiHuman,95;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bCastrate,"MO_EXTREMITYFIST",-25;\nautobonus "{ bonus2 bCastrate,\\"MO_EXTREMITYFIST\\",-100; }",50,6000,BF_WEAPON,"{ specialeffect2 EF_SUFFRAGIUM; }";\nbonus bUnbreakableWeapon;');
  503. 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;\nbonus4 bAutoSpellOnSkill,"CH_PALMSTRIKE","MO_INVESTIGATE",1,100;\nbonus3 bAutoSpell,"MO_CALLSPIRITS",5,100;');
  504. 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;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n bonus3 bAutoSpell,"MO_INVESTIGATE",5,(getrefine()*10-50);\n bonus3 bAutoSpell,"AL_DECAGI",1,(getrefine()*10-50);\n}');
  505. 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;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n bonus2 bCastrate,"MO_EXTREMITYFIST",-100;\n bonus4 bautospellonskill,"MO_EXPLOSIONSPIRITS","CH_SOULCOLLECT",1,1000;\n}');
  506. 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;\nbonus2 bSkillAtk,"MO_FINGEROFFENSIVE",25;');
  507. 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;');
  508. 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);
  509. 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);
  510. 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);
  511. 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);
  512. 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);
  513. 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);
  514. 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);
  515. 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);
  516. 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;');
  517. 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;');
  518. 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);
  519. 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);
  520. 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;\nbonus3 bAutoSpell,"WZ_JUPITEL",1,100;\nbonus bAtkEle,Ele_Wind;\nbonus bInt,2;\nbonus bAgi,1;');
  521. 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;');
  522. 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;');
  523. 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;');
  524. 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;');
  525. 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;\nbonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;');
  526. 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;\nbonus4 bAutoSpellWhenHit,"WZ_HEAVENDRIVE",3,30,1;\nbonus3 bAutoSpell,"NPC_WIDECONFUSE",2,100;');
  527. 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;\nbonus bHPrecovRate,-100;\nbonus2 bHPLossRate,50,5000;\nbonus bDex,-readparam(bDex);');
  528. 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;');
  529. 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;\nbonus2 bSkillAtk,"BA_MUSICALSTRIKE",10;');
  530. 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;\nbonus2 bAddRace,RC_DemiHuman,95;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  531. 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;\nbonus2 bAddRace,RC_DemiHuman,95;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bSkillAtk,"CG_ARROWVULCAN",20;\nbonus bUnbreakableWeapon;');
  532. 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;\nbonus bDex,3;\nbonus2 bAddSkillBlow,"BA_MUSICALSTRIKE",2;\nbonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;');
  533. 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;\nif (getrefine()>9 ) {\n bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,2000;\n}\nelse {\n bonus3 bAddEffOnSkill,"BA_MUSICALSTRIKE",Eff_Stun,1000;\n}');
  534. 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;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8)\n bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;');
  535. 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;\nbonus bHPrecovRate,-100;\nbonus2 bHPLossRate,50,5000;\nbonus bDex,-readparam(bDex);');
  536. 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;');
  537. 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);
  538. 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);
  539. 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);
  540. 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);
  541. 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);
  542. 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);
  543. 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);
  544. 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);
  545. 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;');
  546. 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;');
  547. 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);
  548. 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);
  549. 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;\nbonus bAgi,1;');
  550. 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;\nbonus2 bAddEff,Eff_Poison,5000;');
  551. 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;\nbonus bFlee,10;\nbonus bFlee2,2;');
  552. 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;');
  553. 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;');
  554. 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;');
  555. 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;');
  556. 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;');
  557. 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;\nbonus2 bSkillAtk,"DC_THROWARROW",10;');
  558. 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;');
  559. 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;\nbonus bInt,2;\nbonus bAgi,2;\nbonus3 bAutoSpell,"WZ_JUPITEL",3,20;\nif (getrefine()>0)\n bonus3 bAutoSpell,"CG_ARROWVULCAN",getrefine(),50;');
  560. 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;\nbonus4 bAutoSpellWhenHit,"WZ_FROSTNOVA",3,50,1;\nbonus3 bAutoSpell,"NPC_WIDESILENCE",2,100;');
  561. 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)\n bonus3 bAutoSpell,"AL_INCAGI",getrefine(),10;');
  562. 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;');
  563. 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;\nbonus2 bSkillAtk,"DC_THROWARROW",10;');
  564. 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;\nbonus2 bAddRace,RC_DemiHuman,95;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  565. 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;\nbonus2 bAddRace,RC_DemiHuman,95;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bSkillAtk,"CG_ARROWVULCAN",20;\nbonus bUnbreakableWeapon;');
  566. 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;\nif (getrefine()>=9 ) {\n bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,2000;\n}\nelse {\n bonus3 bAddEffOnSkill,"DC_THROWARROW",Eff_Freeze,1000;\n}');
  567. 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;\nbonus bDex,3;\nbonus2 bAddSkillBlow,"DC_THROWARROW",2;\nbonus2 bAddSkillBlow,"CG_ARROWVULCAN",3;');
  568. 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;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8)\n bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,100;');
  569. 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;\nbonus2 bSkillAtk,"DC_THROWARROW",25;');
  570. 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;');
  571. 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;\nbonus bInt,3;\nbonus bAgi,10;\nbonus bUseSPrate,(getrefine()*2);\nbonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20);\nbonus2 bCastrate,"HW_MAGICPOWER",-50;');
  572. 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;\nbonus bMatkRate,15;\nbonus bDex,4;\nbonus2 bSubRace,RC_Demon,15;\nbonus2 bSubRace,RC_Undead,15;');
  573. 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();\nbonus2 bMagicAddRace,RC_DemiHuman,15;\nbonus2 bMagicAddRace,RC_Player_Human,15;\nbonus2 bIgnoreMdefRaceRate,RC_DemiHuman,25;\nbonus2 bIgnoreMdefRaceRate,RC_Player_Human,25;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bMagicAddRace,RC_DemiHuman,(getrefine()-5)*2;\n bonus2 bMagicAddRace,RC_Player_Human,(getrefine()-5)*2;\n bonus2 bIgnoreMdefRaceRate,RC_DemiHuman,5+(getrefine()-5)*2;\n bonus2 bIgnoreMdefRaceRate,RC_Player_Human,5+(getrefine()-5)*2;\n}\nif (getrefine()>8) {\n bonus5 bAutoSpellOnSkill,"WZ_STORMGUST","MG_SAFETYWALL",10,200,1;\n bonus5 bAutoSpellOnSkill,"WZ_METEOR","MG_SAFETYWALL",10,200,1;\n bonus5 bAutoSpellOnSkill,"WZ_VERMILION","MG_SAFETYWALL",10,200,1;\n}');
  574. 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;\nbonus bInt,3;\nbonus bAgi,10;\nbonus bUseSPrate,(getrefine()*2);\nbonus3 bAutoSpellWhenHit,"WZ_JUPITEL",5,(getrefine()*20);\nbonus2 bCastrate,"HW_MAGICPOWER",-50;');
  575. 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;\nbonus bInt,3+(getrefine()/2);\nbonus bMaxHP,300+(50*getrefine()/2);\nautobonus "{ bonus bMatkRate,12; bonus buseSPRate,20; }",1,5000,BF_MAGIC,"{ specialeffect2 EF_ENHANCE; }";');
  576. 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;\nbonus bMatkRate,15+getrefine()/2;\nbonus bInt,6;\nbonus bVit,2;\nautobonus3 "{ }",20,1000,"AL_HEAL","{ specialeffect2 EF_MAGICALATTHIT; heal 0,200; }";');
  577. 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;\n*/ bonus bAtkEle,Ele_Holy;\nbonus bInt,6;');
  578. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`armor_level`,`refineable`,`view`) VALUES (2101,'Guard','Guard','Armor',500,300,3,true,1,true,1);
  579. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_left_hand`,`armor_level`,`refineable`,`view`) VALUES (2102,'Guard_','Guard','Armor',500,300,3,1,true,1,true,1);
  580. 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`,`armor_level`,`refineable`,`view`) VALUES (2103,'Buckler','Buckler','Armor',14000,600,4,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,true,2);
  581. 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`,`armor_level`,`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,1,true,2);
  582. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`armor_level`,`refineable`,`view`) VALUES (2105,'Shield','Shield','Armor',56000,1300,6,true,true,true,true,1,true,3);
  583. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_left_hand`,`armor_level`,`refineable`,`view`) VALUES (2106,'Shield_','Shield','Armor',56000,1300,6,1,true,true,true,true,1,true,3);
  584. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (2107,'Mirror_Shield','Mirror Shield','Armor',60000,1000,4,true,true,true,true,true,1,true,4,'bonus bMdef,5;');
  585. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (2108,'Mirror_Shield_','Mirror Shield','Armor',60000,1000,4,1,true,true,true,true,true,1,true,4,'bonus bMdef,5;');
  586. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (2109,'Memorize_Book','Memory Book','Armor',20,1000,3,true,true,true,true,true,1,true,5,'bonus bInt,1;\nbonus bMdef,2;');
  587. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`location_left_hand`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (2110,'Holy_Guard','Holy Guard','Armor',85000,1400,5,true,true,1,68,4,'bonus bVit,2;\nbonus bMdef,2;');
  588. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2111,'Herald_Of_GOD','Sacred Mission','Armor',128000,1600,5,true,true,1,83,true,4,'bonus bVit,3;\nbonus bInt,2;\nbonus bMdef,3;\nbonus bUnbreakableShield;');
  589. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_left_hand`,`armor_level`,`view`) VALUES (2112,'Novice_Guard','Novice Guard','Armor',1,1,3,true,true,true,1,1);
  590. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2113,'Novice_Shield','Novice Shield','Armor',5000,1000,3,1,true,true,true,1,40,true,3,'bonus2 bSubEle,Ele_Water,20;\nbonus2 bSubEle,Ele_Earth,20;\nbonus2 bSubEle,Ele_Fire,20;\nbonus2 bSubEle,Ele_Wind,20;\nbonus2 bSubEle,Ele_Poison,20;\nbonus2 bSubEle,Ele_Ghost,20;\nbonus2 bSubEle,Ele_Undead,20;');
  591. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2114,'Stone_Buckler','Stone Buckler','Armor',30000,1500,3,1,true,false,false,true,1,65,true,2,'bonus2 bSubSize,Size_Large,5;');
  592. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2115,'Valkyrja\'s_Shield','Valkyrja\'s Shield','Armor',30000,500,3,1,true,false,false,true,1,65,true,4,'bonus2 bSubEle,Ele_Water,20;\nbonus2 bSubEle,Ele_Fire,20;\nbonus2 bSubEle,Ele_Dark,20;\nbonus2 bSubEle,Ele_Undead,20;\nbonus bMdef,5;');
  593. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2116,'Angel\'s_Safeguard','Angelic Guard','Armor',10000,400,3,1,true,true,true,1,20,true,1,'bonus2 bSubRace,RC_Demon,5;');
  594. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (2117,'Arm_Guard','Arm Guard','Armor',10000,150,5,true,true,1,20,true,1);
  595. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (2118,'Arm_Guard_','Arm Guard','Armor',10000,150,5,1,true,true,1,20,true,1);
  596. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_ninja`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2119,'Improved_Arm_Guard','Advanced Arm Guard','Armor',40000,150,4,true,true,1,50,true,1,'bonus bMdef,5;');
  597. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_ninja`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2120,'Improved_Arm_Guard_','Advanced Arm Guard','Armor',40000,150,4,1,true,true,1,50,true,1,'bonus bMdef,5;');
  598. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (2121,'Memorize_Book_','Memory Book','Armor',20,1000,3,1,true,true,true,true,true,1,true,5,'bonus bInt,1;\nbonus bMdef,2;');
  599. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2122,'Platinum_Shield','Platinum Shield','Armor',20,1200,5,true,false,false,true,true,1,68,true,4,'bonus bMdef,5;\nbonus2 bSubSize,Size_Medium,15;\nbonus2 bSubSize,Size_Large,15;\nbonus2 bSubRace,RC_Undead,10;\nbonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;');
  600. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2123,'Orleans_Server','Orleans\'s Server','Armor',20,1000,5,1,true,false,false,true,true,1,55,true,4,'bonus bMdef,2;\nbonus bMagicDamageReturn,5;');
  601. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2124,'Thorny_Buckler','Thorny Buckler','Armor',20,1000,5,1,true,false,false,true,true,1,55,true,2,'bonus bMdef,2;');
  602. 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`,`armor_level`,`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,1,75,true,4,'bonus bNoKnockback;\nbonus2 bSubEle,Ele_Neutral,-20;\nbonus2 bSubEle,Ele_Fire,-20;\nbonus2 bSubEle,Ele_Water,-20;\nbonus2 bSubEle,Ele_Wind,-20;\nbonus2 bSubEle,Ele_Earth,-20;\nbonus2 bSubEle,Ele_Dark,-20;\nbonus2 bSubEle,Ele_Holy,-20;\nbonus2 bSubEle,Ele_Ghost,-20;');
  603. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2126,'Guyak_Shield','Guyak Shield','Armor',20,700,3,true,false,false,true,1,75,true,2,'bonus bMdef,3;');
  604. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_left_hand`,`armor_level`,`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,1,4,100,true,true,true,true,true,true,true,'bonus2 bSubClass,Class_All,25;');
  605. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2128,'Herald_Of_GOD_','Sacred Mission','Armor',128000,1600,5,1,true,true,1,83,true,4,'bonus bVit,3;\nbonus bInt,2;\nbonus bMdef,3;\nbonus bUnbreakableShield;');
  606. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_monk`,`job_priest`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2129,'Exorcism_Bible','Exorcism Bible','Armor',20,600,5,true,true,true,1,50,true,5,'bonus bHPrecovRate,3;\nbonus bSPrecovRate,3;\nbonus bInt,1;');
  607. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2130,'Cross_Shield','Cross Shield','Armor',20,2000,6,1,true,true,1,80,true,4,'bonus bStr,1;\nbonus2 bSkillAtk,"PA_SHIELDCHAIN",30;\nbonus2 bSkillAtk,"CR_SHIELDBOOMERANG",30;\nbonus bUseSPrate,10;');
  608. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2131,'Magic_Study_Vol1','Magic Bible Vol1','Armor',20,1000,2,1,true,true,true,true,true,1,70,true,5,'bonus bMdef,3;\nbonus bInt,2;\nbonus2 bAddEffWhenHit,Eff_Stun,1000;');
  609. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_left_hand`,`armor_level`,`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,1,2,100,true,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_All,20;\nbonus bShortWeaponDamageReturn,1;\nif (vip_status(VIP_STATUS_ACTIVE)) {\n bonus bAllStats,1;\n}');
  610. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2133,'Tournament_Shield','Tournament Shield','Armor',20,1000,5,1,true,true,true,true,true,1,50,true,4,'bonus2 bAddClass,Class_All,1;\nif (Class == Job_Lord_Knight)\n bonus bAspdRate,-5;');
  611. 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`,`armor_level`,`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,1,70,true,2,'bonus bMdef,3;\nautobonus2 "{ bonus bShortWeaponDamageReturn,(getrefine()*3); }",10,5000,BF_WEAPON,"{ specialeffect2 EF_GUARD; }";');
  612. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_rogue`,`class_upper`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (2135,'Shadow_Guard','Shadow Guard','Armor',20,800,4,1,true,true,true,1,70,true,2);
  613. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_left_hand`,`armor_level`,`view`,`script`) VALUES (2136,'Cracked_Buckler','Cracked Buckler','Armor',5,true,1,2,'bonus bAgi,2;\nbonus2 bAddEle,Ele_Neutral,-10;\nbonus3 bAutoSpellWhenHit,"PR_KYRIE",1,50;\nbonus bMdef,1;');
  614. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_left_hand`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (2137,'Valkyrja\'s_Shield_C','Neo Valkyrja\'s Shield','Armor',5,true,false,false,true,true,1,95,4,'bonus2 bSubEle,Ele_Water,20;\nbonus2 bSubEle,Ele_Fire,20;\nbonus2 bSubEle,Ele_Dark,20;\nbonus2 bSubEle,Ele_Undead,20;\nbonus bMdef,5;');
  615. 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`,`armor_level`,`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,1,65,true,3,'bonus2 bSkillAtk,"CR_SHIELDBOOMERANG",60;\nbonus bAgi,-1;\nbonus bMaxHP,500;');
  616. 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`,`armor_level`,`equip_level_min`,`view`) VALUES (2139,'Flame_Thrower','Flame Thrower','Armor',20000,2000,60,true,true,true,true,true,1,99,1);
  617. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_left_hand`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2199,'Ahura_Mazda','Ahura Mazdah','Armor',1,10,100,true,1,1,true,'bonus bAllStats,50;\nbonus bMdef,99;\nbonus bShortWeaponDamageReturn,100;\nbonus2 bSubRace,RC_DemiHuman,95;\nbonus2 bSubRace,RC_Player_Human,95;\nskill "CR_FULLPROTECTION",5;\nSkill "WZ_ESTIMATION",1;\nSkill "ST_FULLSTRIP",5;\nSkill "HW_MAGICPOWER",10;\nbonus bMaxHPRate,200;\nbonus bNoGemStone;\nbonus bSpeedRate,25;\nbonus bNoWalkDelay;');
  618. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (2201,'Sunglasses','Sunglasses','Armor',5000,100,true,1,12,'bonus2 bResEff,Eff_Blind,500;');
  619. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (2202,'Sunglasses_','Sunglasses','Armor',5000,100,1,true,1,12,'bonus2 bResEff,Eff_Blind,500;');
  620. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (2203,'Glasses','Glasses','Armor',4000,100,true,1,3);
  621. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_mid`,`armor_level`,`view`) VALUES (2204,'Glasses_','Glasses','Armor',4000,100,1,true,1,3);
  622. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (2205,'Diver\'s_Goggles','Diver Goggles','Armor',3500,100,true,1,10);
  623. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2206,'Wedding_Veil','Wedding Veil','Armor',23000,100,true,1,true,44,'bonus bMdef,5;');
  624. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (2207,'Fancy_Flower','Fancy Flower','Armor',20,100,true,1,4,'bonus2 bSubRace,RC_Plant,10;');
  625. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2208,'Ribbon','Ribbon','Armor',800,100,1,true,1,true,17,'bonus bMdef,3;');
  626. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2209,'Ribbon_','Ribbon','Armor',800,100,1,1,true,1,true,17,'bonus bMdef,3;');
  627. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`) VALUES (2210,'Hair_Band','Hair Band','Armor',500,100,1,true,1,9);
  628. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2211,'Bandana','Bandana','Armor',400,100,1,true,1,true,6);
  629. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (2212,'Eye_Bandage','Eye Patch','Armor',1000,100,true,1,13);
  630. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2213,'Cat_Hairband','Kitty Band','Armor',20,100,2,true,1,true,2);
  631. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2214,'Bunny_Band','Bunny Band','Armor',20,100,2,true,1,true,15,'bonus bLuk,2;');
  632. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2215,'Flower_Hairband','Flower Band','Armor',20,100,2,true,1,true,5);
  633. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2216,'Biretta','Biretta','Armor',9000,100,4,true,true,true,true,1,true,11);
  634. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2217,'Biretta_','Biretta','Armor',9000,100,4,1,true,true,true,true,1,true,11);
  635. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (2218,'Flu_Mask','Flu Mask','Armor',300,100,true,1,8,'bonus2 bResEff,Eff_Silence,1000;');
  636. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (2219,'Flu_Mask_','Flu Mask','Armor',300,100,true,1,8,'bonus2 bResEff,Eff_Silence,1000;');
  637. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2220,'Hat','Hat','Armor',1000,200,2,true,1,true,16);
  638. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2221,'Hat_','Hat','Armor',1000,200,2,1,true,1,true,16);
  639. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2222,'Turban','Turban','Armor',4500,300,3,true,false,false,true,1,true,7);
  640. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2223,'Turban_','Turban','Armor',4500,300,3,1,true,false,false,true,1,true,7);
  641. 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`,`armor_level`,`refineable`,`view`) VALUES (2224,'Goggle','Goggles','Armor',20,300,5,true,true,true,true,true,true,true,true,true,true,true,true,true,true,1,true,1);
  642. 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`,`armor_level`,`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,1,true,1);
  643. 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`,`armor_level`,`refineable`,`view`) VALUES (2226,'Cap','Cap','Armor',12000,400,4,true,true,true,true,true,true,true,true,true,true,true,true,true,1,true,14);
  644. 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`,`armor_level`,`refineable`,`view`) VALUES (2227,'Cap_','Cap','Armor',12000,400,4,1,true,true,true,true,true,true,true,true,true,true,true,true,true,1,true,14);
  645. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2228,'Helm','Helm','Armor',44000,600,6,true,true,true,true,1,true,40);
  646. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2229,'Helm_','Helm','Armor',44000,600,6,1,true,true,true,true,1,true,40);
  647. 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`,`armor_level`,`refineable`,`script`) VALUES (2230,'Gemmed_Sallet','Gemmed Sallet','Armor',50000,500,4,true,true,true,true,true,true,true,true,true,true,1,true,'bonus bMdef,3;');
  648. 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`,`armor_level`,`refineable`,`script`) VALUES (2231,'Gemmed_Sallet_','Gemmed Sallet','Armor',50000,500,4,1,true,true,true,true,true,true,true,true,true,true,1,true,'bonus bMdef,3;');
  649. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (2232,'Circlet','Circlet','Armor',7500,300,3,true,true,true,true,true,true,true,true,1,true,18,'bonus bMdef,3;');
  650. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (2233,'Circlet_','Circlet','Armor',7500,300,3,1,true,true,true,true,true,true,true,true,1,true,18,'bonus bMdef,3;');
  651. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2234,'Tiara','Tiara','Armor',20,400,4,true,false,false,true,1,45,true,19,'bonus bInt,2;');
  652. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2235,'Crown','Crown','Armor',20,400,4,true,false,false,true,1,45,true,45,'bonus bInt,2;');
  653. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2236,'Santa\'s_Hat','Santa Hat','Armor',20,100,1,true,1,true,20,'bonus bMdef,1;\nbonus bLuk,1;');
  654. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`) VALUES (2237,'Weird_Goatee','Bandit Beard','Armor',2,100,true,1,21);
  655. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (2239,'One_Eyed_Glass','Monocle','Armor',10000,100,true,1,23);
  656. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`) VALUES (2240,'Beard','Beard','Armor',2,100,true,1,24);
  657. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`) VALUES (2241,'Granpa_Beard','Grampa Beard','Armor',5000,100,true,1,25);
  658. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (2242,'Luxury_Sunglasses','Purple Glasses','Armor',24000,100,1,true,1,26,'bonus2 bResEff,Eff_Blind,1000;');
  659. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (2243,'Spinning_Eyes','Geek Glasses','Armor',20000,100,1,true,1,27,'bonus2 bResEff,Eff_Blind,1500;');
  660. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2244,'Big_Sis\'_Ribbon','Big Ribbon','Armor',15000,200,2,true,false,false,true,1,true,28,'bonus bMdef,3;');
  661. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2245,'Sweet_Gents','Sweet Gent','Armor',15000,400,3,true,false,false,true,1,true,29);
  662. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2246,'Golden_Gear','Golden Gear','Armor',20,900,5,true,false,false,true,1,40,true,30,'bonus bUnbreakableHelm;');
  663. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2247,'Oldman\'s_Romance','Romantic Gent','Armor',15000,400,3,true,false,false,true,1,true,31);
  664. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2248,'Western_Grace','Western Grace','Armor',15000,400,3,true,false,false,true,1,true,32);
  665. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2249,'Coronet','Coronet','Armor',20,300,3,true,false,false,true,1,true,33,'bonus bInt,1;');
  666. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (2250,'Fillet','Cute Ribbon','Armor',500,100,1,true,false,false,true,1,34,'bonus bMaxSP,20;');
  667. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2251,'Holy_Bonnet','Monk Hat','Armor',30000,100,5,true,true,true,true,1,true,35,'bonus bMdef,3;');
  668. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (2252,'Star_Sparkling','Wizard Hat','Armor',20,300,4,true,true,true,true,true,1,true,36,'bonus bMaxSP,100;');
  669. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (2253,'Sunflower','Sunflower','Armor',20,100,1,true,1,37,'bonus2 bSubRace,RC_Insect,10;');
  670. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2254,'Angelic_Chain','Angel Wing','Armor',20,100,2,true,false,false,true,1,true,38,'bonus bMdef,3;\nbonus bAgi,1;\nbonus bLuk,1;\nbonus2 bSubRace,RC_Demon,3;');
  671. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2255,'Satanic_Chain','Evil Wing','Armor',20,100,3,true,false,false,true,1,true,39,'bonus bMdef,2;\nbonus bStr,1;\nbonus2 bSubRace,RC_Angel,3;');
  672. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (2256,'Magestic_Goat','Majestic Goat','Armor',20,800,5,true,true,true,true,true,true,true,true,true,1,true,41,'bonus bStr,1;');
  673. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2257,'Snowy_Horn','Unicorn Horn','Armor',20,100,2,true,1,true,42);
  674. 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`,`armor_level`,`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,1,50,true,43);
  675. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2259,'Mini_Propeller','Mini Propeller','Armor',20,100,1,true,1,true,46);
  676. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`view`) VALUES (2260,'Mini_Glasses','Mini Glasses','Armor',28000,100,1,true,false,false,true,1,47);
  677. 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`,`armor_level`,`refineable`,`view`) VALUES (2261,'Prontera_Army_Cap','Army Cap','Armor',20,400,4,true,true,true,true,true,true,true,true,true,true,1,true,48);
  678. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`) VALUES (2262,'Pierrot_Nose','Clown Nose','Armor',20,100,true,1,49);
  679. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`view`) VALUES (2263,'Gangster_Patch','Zorro Masque','Armor',20,100,true,false,false,true,1,50);
  680. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (2264,'Munak_Turban','Munak Hat','Armor',20,300,5,true,true,true,1,51,'bonus2 bSubRace,RC_Undead,10;');
  681. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (2265,'Ganster_Mask','Gangster Mask','Armor',20,100,true,1,52,'bonus2 bResEff,Eff_Silence,1500;');
  682. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_low`,`armor_level`,`equip_level_min`,`view`) VALUES (2266,'Iron_Cane','Iron Cain','Armor',20,300,1,true,true,true,true,1,50,53);
  683. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (2267,'Cigar','Cigarette','Armor',20,100,true,false,false,true,1,54,'bonus2 bSubRace,RC_Insect,3;');
  684. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (2268,'Smoking_Pipe','Pipe','Armor',20,100,true,false,false,true,1,55,'bonus2 bSubRace,RC_Insect,3;');
  685. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (2269,'Centimental_Flower','Romantic Flower','Armor',20,100,true,false,false,true,1,56,'bonus2 bSubRace,RC_Plant,3;');
  686. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (2270,'Centimental_Leaf','Romantic Leaf','Armor',20,100,true,false,false,true,1,57,'bonus2 bSubRace,RC_Plant,3;');
  687. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`) VALUES (2271,'Jack_A_Dandy','Jack be Dandy','Armor',45000,100,1,true,false,false,true,1,58);
  688. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2272,'Stop_Post','Stop Post','Armor',20,400,1,true,1,true,59);
  689. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2273,'Doctor_Cap','Doctor Band','Armor',20,100,3,true,false,false,true,1,true,60,'bonus bInt,1;');
  690. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2274,'Ghost_Bandana','Ghost Bandana','Armor',20,100,true,false,false,true,1,true,61,'bonus bAgi,2;\nbonus2 bSubEle,Ele_Ghost,10;');
  691. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2275,'Red_Bandana','Red Bandana','Armor',20,100,2,true,1,true,62);
  692. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`view`) VALUES (2276,'Eagle_Eyes','Angled Glasses','Armor',20,100,1,true,1,63);
  693. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2277,'Nurse_Cap','Nurse Cap','Armor',20,100,2,true,true,true,true,1,true,64,'bonus bInt,1;');
  694. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`view`) VALUES (2278,'Mr_Smile','Mr. Smile','Armor',60,100,1,true,true,1,65);
  695. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`) VALUES (2279,'Bomb_Wick','Bomb Wick','Armor',20,100,1,true,1,66);
  696. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2280,'Sahkkat','Sakkat','Armor',20,300,3,true,1,true,67,'bonus bAgi,1;');
  697. 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`,`armor_level`,`view`) VALUES (2281,'Phantom_Of_Opera','Opera Masque','Armor',20,200,2,true,false,false,true,true,1,68);
  698. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (2282,'Spirit_Chain','Halo','Armor',20,100,true,1,69,'bonus2 bSubEle,Ele_Holy,15;');
  699. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2283,'Ear_Mufs','Ear Muffs','Armor',20,200,3,true,1,true,70,'bonus2 bResEff,Eff_Curse,1000;');
  700. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2284,'Antler','Antlers','Armor',20,500,4,true,false,false,true,1,true,71);
  701. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (2285,'Apple_Of_Archer','Apple of Archer','Armor',20,200,true,false,false,true,1,30,true,72,'bonus bDex,3;');
  702. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`) VALUES (2286,'Elven_Ears','Elven Ears','Armor',20,100,true,false,false,true,1,70,73);
  703. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (2287,'Pirate_Bandana','Pirate Bandana','Armor',20,100,3,true,false,false,true,1,true,74,'bonus bStr,1;');
  704. 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`,`armor_level`,`view`) VALUES (2288,'Mr_Scream','Mr. Scream','Armor',20,100,1,true,false,false,true,true,1,75);
  705. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (2289,'Poo_Poo_Hat','Poo Poo Hat','Armor',20,700,true,1,76,'bonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;');
  706. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`) VALUES (2290,'Funeral_Costume','Funeral Hat','Armor',3000,100,1,true,1,77);
  707. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (2291,'Masquerade','Masquerade','Armor',20,100,true,false,false,true,1,78,'bonus2 bAddRace,RC_DemiHuman,3;\nbonus2 bAddRace,RC_Player_Human,3;');
  708. 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`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (2292,'Welding_Mask','Welding Mask','Armor',20,300,2,true,true,true,true,true,1,50,79,'bonus2 bSubEle,Ele_Fire,10;');
  709. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`) VALUES (2293,'Pretend_Murdered','Pretend Murdered','Armor',20,100,1,true,1,80);
  710. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (2294,'Star_Dust','Stellar','Armor',20,100,1,true,1,true,81);
  711. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (2295,'Blinker','Blinker','Armor',1500,100,true,false,false,true,1,82,'bonus2 bResEff,Eff_Blind,10000;');
  712. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (2296,'Binoculars','Binoculars','Armor',20,100,1,true,true,true,true,1,50,83,'bonus bDex,1;');
  713. 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`,`armor_level`,`view`) VALUES (2297,'Goblini_Mask','Goblin Mask','Armor',20,100,1,true,false,false,true,true,1,84);
  714. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`) VALUES (2298,'Green_Feeler','Green Feeler','Armor',20,100,2,true,1,85);
  715. 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`,`armor_level`,`refineable`,`view`) VALUES (2299,'Viking_Helm','Orc Helm','Armor',20,500,5,true,true,true,true,true,true,true,true,true,true,1,true,86);
  716. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`armor_level`,`refineable`) VALUES (2301,'Cotton_Shirt','Cotton Shirt','Armor',10,100,1,true,1,true);
  717. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`armor_level`,`refineable`) VALUES (2302,'Cotton_Shirt_','Cotton Shirt','Armor',10,100,1,1,true,1,true);
  718. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`armor_level`,`refineable`) VALUES (2303,'Leather_Jacket','Jacket','Armor',200,200,2,true,1,true);
  719. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`armor_level`,`refineable`) VALUES (2304,'Leather_Jacket_','Jacket','Armor',200,200,2,1,true,1,true);
  720. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`armor_level`,`refineable`) VALUES (2305,'Adventure_Suit','Adventurer\'s Suit','Armor',1000,300,3,true,1,true);
  721. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`armor_level`,`refineable`) VALUES (2306,'Adventurere\'s_Suit_','Adventurer\'s Suit','Armor',1000,300,3,1,true,1,true);
  722. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`refineable`) VALUES (2307,'Mantle','Mantle','Armor',10000,600,4,true,false,false,true,1,true);
  723. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`refineable`) VALUES (2308,'Mantle_','Mantle','Armor',10000,600,4,1,true,false,false,true,1,true);
  724. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`refineable`) VALUES (2309,'Coat','Coat','Armor',22000,1200,5,true,false,false,true,1,true);
  725. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`refineable`) VALUES (2310,'Coat_','Coat','Armor',22000,1200,5,1,true,false,false,true,1,true);
  726. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2311,'Mink_Coat','Mink Coat','Armor',20,2300,6,1,true,false,false,true,1,30,true);
  727. 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`,`armor_level`,`refineable`) VALUES (2312,'Padded_Armor','Padded Armor','Armor',48000,2800,7,true,true,true,true,true,true,true,true,true,true,1,true);
  728. 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`,`armor_level`,`refineable`) VALUES (2313,'Padded_Armor_','Padded Armor','Armor',48000,2800,7,1,true,true,true,true,true,true,true,true,true,true,1,true);
  729. 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`,`armor_level`,`refineable`) VALUES (2314,'Chain_Mail','Chain Mail','Armor',65000,3300,8,true,true,true,true,true,true,true,true,true,true,1,true);
  730. 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`,`armor_level`,`refineable`) VALUES (2315,'Chain_Mail_','Chain Mail','Armor',65000,3300,8,1,true,true,true,true,true,true,true,true,true,true,1,true);
  731. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2316,'Plate_Armor','Full Plate','Armor',80000,4500,10,true,true,true,true,1,40,true);
  732. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2317,'Plate_Armor_','Full Plate','Armor',80000,4500,10,1,true,true,true,true,1,40,true);
  733. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2318,'Clothes_Of_The_Lord','Lord\'s Clothes','Armor',20,2500,8,1,true,true,true,true,1,70,true,'bonus bMdef,5;\nbonus bInt,1;');
  734. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2319,'Glittering_Clothes','Glittering Jacket','Armor',20,2500,7,1,true,false,false,true,1,60,true,'bonus bMdef,5;\nbonus2 bAddEff,Eff_Blind,300;');
  735. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`refineable`) VALUES (2320,'Formal_Suit','Formal Suit','Armor',20,300,5,1,true,false,false,true,1,true);
  736. 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`,`armor_level`,`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,1,true,'bonus bMdef,10;');
  737. 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`,`armor_level`,`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,1,true,'bonus bMdef,10;');
  738. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`armor_level`,`refineable`) VALUES (2323,'Scapulare','Scapulare','Armor',6500,400,4,true,true,true,true,1,true);
  739. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`armor_level`,`refineable`) VALUES (2324,'Scapulare_','Scapulare','Armor',6500,400,4,1,true,true,true,true,1,true);
  740. 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`,`armor_level`,`refineable`,`script`) VALUES (2325,'Saint_Robe','Saint\'s Robe','Armor',54000,600,6,true,true,true,true,true,true,true,1,true,'bonus bMdef,5;');
  741. 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`,`armor_level`,`refineable`,`script`) VALUES (2326,'Saint_Robe_','Saint\'s Robe','Armor',54000,600,6,1,true,true,true,true,true,true,true,1,true,'bonus bMdef,5;');
  742. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2327,'Holy_Robe','Holy Robe','Armor',20,1700,7,true,true,true,true,1,60,true,'bonus bMdef,5;\nbonus2 bSubRace,RC_Demon,15;\nbonus2 bSubEle,Ele_Dark,10;');
  743. 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`,`armor_level`,`refineable`) VALUES (2328,'Wooden_Mail','Wooden Mail','Armor',5500,1000,4,true,true,true,true,true,true,true,1,true);
  744. 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`,`armor_level`,`refineable`) VALUES (2329,'Wooden_Mail_','Wooden Mail','Armor',5500,1000,4,1,true,true,true,true,true,true,true,1,true);
  745. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2330,'Tights','Tights','Armor',71000,500,6,true,true,true,true,1,45,true,'bonus bDex,1;');
  746. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2331,'Tights_','Tights','Armor',71000,500,6,1,true,true,true,true,1,45,true,'bonus bDex,1;');
  747. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`armor_level`,`refineable`) VALUES (2332,'Silver_Robe','Silver Robe','Armor',7000,700,4,true,true,true,true,true,1,true);
  748. 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`,`armor_level`,`refineable`) VALUES (2333,'Silver_Robe_','Silver Robe','Armor',7000,700,4,1,true,true,true,true,true,1,true);
  749. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2334,'Mage_Coat','Mage Coat','Armor',20,600,5,true,true,true,true,true,1,50,true,'bonus bMdef,5;\nbonus bInt,1;');
  750. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`armor_level`,`refineable`,`script`) VALUES (2335,'Thief_Clothes','Thief Clothes','Armor',74000,100,6,true,true,true,true,true,1,true,'bonus bAgi,1;');
  751. 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`,`armor_level`,`refineable`,`script`) VALUES (2336,'Thief_Clothes_','Thief Clothes','Armor',74000,100,6,1,true,true,true,true,true,1,true,'bonus bAgi,1;');
  752. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2337,'Ninja_Suit','Ninja Suit','Armor',20,1500,7,true,true,true,true,true,1,50,true,'bonus bAgi,1;\nbonus bMdef,3;');
  753. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`refineable`,`script`) VALUES (2338,'Wedding_Dress','Wedding Dress','Armor',43000,500,true,false,false,true,1,true,'bonus bMdef,15;');
  754. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`armor_level`,`refineable`) VALUES (2339,'G_Strings','Pantie','Armor',1000,100,4,true,1,true);
  755. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2340,'Novice_Breast','Novice Breastplate','Armor',89000,500,4,1,true,true,true,1,10,true);
  756. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2341,'Full_Plate_Armor','Legion Plate Armor','Armor',94000,5500,11,true,true,1,70,true);
  757. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2342,'Full_Plate_Armor_','Legion Plate Armor','Armor',102500,5500,11,1,true,true,1,70,true);
  758. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2343,'Robe_Of_Casting','Robe of Cast','Armor',124800,1100,5,true,true,true,true,1,75,true,'bonus bCastrate,-3;\nbonus bMdef,4;');
  759. 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`,`armor_level`,`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,1,45,true,'bonus bDefEle,Ele_Fire;');
  760. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`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,1,45,true,'bonus bDefEle,Ele_Fire;');
  761. 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`,`armor_level`,`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,1,45,true,'bonus bDefEle,Ele_Water;');
  762. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2347,'Water_Sprits_Armor_','Saphien\'s Armor of Ocean','Armor',136000,2200,4,1,true,false,false,true,1,45,true,'bonus bDefEle,Ele_Water;');
  763. 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`,`armor_level`,`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,1,45,true,'bonus bDefEle,Ele_Wind;');
  764. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2349,'Wind_Sprits_Armor_','Aebecee\'s Raging Typhoon Armor','Armor',136000,2200,4,1,true,false,false,true,1,45,true,'bonus bDefEle,Ele_Wind;');
  765. 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`,`armor_level`,`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,1,45,true,'bonus bDefEle,Ele_Earth;');
  766. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2351,'Earth_Sprits_Armor_','Claytos Cracking Earth Armor','Armor',136000,2200,4,1,true,false,false,true,1,45,true,'bonus bDefEle,Ele_Earth;');
  767. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`) VALUES (2352,'Novice_Plate','Tattered Novice Ninja Suit','Armor',1,1,4,true,true,true,1);
  768. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2353,'Odin\'s_Blessing','Odin\'s Blessing','Armor',30000,2500,6,1,true,false,false,true,1,65,true);
  769. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2354,'Goibne\'s_Armor','Goibne\'s Armor','Armor',50000,3500,7,true,false,false,true,1,54,true,'bonus bVit,2;\nbonus bMaxHPrate,10;');
  770. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2355,'Angel\'s_Protection','Angelic Protection','Armor',10000,600,4,1,true,true,true,1,40,true,'bonus bMdef,20;');
  771. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2356,'Vestment_Of_Grace','Blessed Holy Robe','Armor',20,2500,5,1,true,true,true,1,70,true,'bonus bMdef,5;\nbonus2 bResEff,Eff_Blind,8000;');
  772. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2357,'Valkyrie_Armor','Valkyrian Armor','Armor',2800,6,1,true,false,false,true,true,1,1,true,'bonus bAllStats,1;\nbonus bUnbreakableArmor;\nif (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)\n bonus2 bResEff,Eff_Silence,5000;\nelse if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)\n bonus2 bResEff,Eff_Stun,5000;');
  773. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`armor_level`,`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,1,100,true,true,true,'bonus bLuk,4;');
  774. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2359,'Ninja_Suit_','Ninja Suit','Armor',20,1500,7,1,true,true,true,true,true,1,50,true,'bonus bAgi,1;\nbonus bMdef,3;');
  775. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2360,'Robe_Of_Casting_','Robe of Cast','Armor',124800,1100,5,1,true,true,true,true,1,75,true,'bonus bCastrate,-3;\nbonus bMdef,4;');
  776. 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`,`armor_level`,`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,1,55,true,'bonus2 bResEff,Eff_Stun,3000;\nbonus2 bResEff,Eff_Freeze,3000;');
  777. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2365,'Orleans_Gown','Orleans\'s Gown','Armor',20,300,2,1,true,false,false,true,true,1,55,true,'bonus bCastrate,15;\nbonus bNoCastCancel;');
  778. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2366,'Divine_Cloth','Divine Cloth','Armor',20,1500,6,1,true,false,false,true,true,1,55,true,'bonus2 bResEff,Eff_Curse,500;\nbonus2 bResEff,Eff_Silence,500;\nbonus2 bResEff,Eff_Stun,500;\nbonus2 bResEff,Eff_Stone,500;\nbonus2 bResEff,Eff_Sleep,500;');
  779. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_upper`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2367,'Sniping_Suit','Sniping Suit','Armor',20,750,5,1,true,true,true,1,50,true,'bonus bMdef,5;\nbonus bCritical,6+(readparam(bLuk)/10);\nbonus bDelayRate,-23;');
  780. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`armor_level`,`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,1,100,true,true,true,true,true,true,'bonus bMdef,4;');
  781. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bUnbreakableArmor;\nbonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;');
  782. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bMaxHP,300;\nbonus bMaxSP,30;\nbonus bBaseAtk,10;\nbonus bAGI,1;');
  783. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_armor`,`armor_level`,`refineable`) VALUES (2371,'G_Strings_','Pantie','Armor',1000,100,4,1,true,1,true);
  784. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2372,'Mage_Coat_','Mage Coat','Armor',20,600,5,1,true,true,true,true,true,1,50,true,'bonus bMdef,5;\nbonus bInt,1;');
  785. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2373,'Holy_Robe_','Holy Robe','Armor',20,1700,7,1,true,true,true,true,1,60,true,'bonus bMdef,5;\nbonus2 bSubRace,RC_Demon,15;\nbonus2 bSubEle,Ele_Dark,10;');
  786. 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`,`armor_level`,`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,1,55,true,'bonus bMaxSP,150;\nbonus bMdef,5;\nbonus bHealPower,6;\nbonus bDelayRate,-10;');
  787. 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`,`armor_level`,`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,1,55,true,'bonus bStr,2;\nbonus bDex,1;\nbonus bMaxHP,150;\nbonus2 bResEff,Eff_Stun,500;\nbonus2 bResEff,Eff_Stone,500;');
  788. 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`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150;\nbonus bMdef,2;\nbonus2 bSubRace,RC_DemiHuman,2;\nbonus2 bSubRace,RC_Player_Human,2;');
  789. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_armor`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150;\nbonus bMdef,2;\nbonus2 bSubRace,RC_DemiHuman,2;\nbonus2 bSubRace,RC_Player_Human,2;');
  790. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_assassin`,`job_ninja`,`job_rogue`,`job_thief`,`location_armor`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150;\nbonus bMdef,2;\nbonus2 bSubRace,RC_DemiHuman,2;\nbonus2 bSubRace,RC_Player_Human,2;');
  791. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_armor`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150;\nbonus bMdef,2;\nbonus2 bSubRace,RC_DemiHuman,2;\nbonus2 bSubRace,RC_Player_Human,2;');
  792. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_armor`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150;\nbonus bMdef,2;\nbonus2 bSubRace,RC_DemiHuman,2;\nbonus2 bSubRace,RC_Player_Human,2;');
  793. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_archer`,`job_barddancer`,`job_hunter`,`location_armor`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150;\nbonus bMdef,2;\nbonus2 bSubRace,RC_DemiHuman,2;\nbonus2 bSubRace,RC_Player_Human,2;');
  794. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`location_armor`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,150;\nbonus bMdef,2;\nbonus2 bSubRace,RC_DemiHuman,2;\nbonus2 bSubRace,RC_Player_Human,2;');
  795. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_armor`,`armor_level`,`equip_level_min`,`script`) VALUES (2383,'Brynhild','Brynhild','Armor',20,400,10,true,1,94,'bonus bMdef,10;\nbonus bMaxHP,20*BaseLevel;\nbonus bMaxSP,5*BaseLevel;\nbonus2 bAddClass,Class_All,10;\nbonus bMatkRate,10;\nbonus bUnbreakableArmor;\nbonus bNoKnockback;');
  796. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bMaxHP,800;\nbonus2 bResEff,Eff_Freeze,10000;\nbonus2 bSubEle,Ele_Earth,20;\nbonus2 bSubEle,Ele_Fire,20;\nbonus2 bSubEle,Ele_Wind,20;\nbonus2 bSubEle,Ele_Poison,20;\nbonus2 bSubEle,Ele_Holy,20;\nbonus2 bSubEle,Ele_Dark,20;\nbonus2 bSubEle,Ele_Ghost,20;\nbonus2 bSubEle,Ele_Undead,20;');
  797. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_armor`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bNoRegen,1;\nbonus bNoRegen,2;\nbonus bHPGainValue,60;\nbonus bSPGainValue,6;\nbonus bMagicHPGainValue,60;\nbonus bMagicSPGainValue,6;','heal 0,-100;');
  798. 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`,`armor_level`,`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,1,70,true,'bonus bMaxHP,(BaseLevel*7);\nbonus bMaxSP,(BaseLevel/2);\nautobonus2 "{ bonus bNoMagicDamage,100; }",10,2000,BF_MAGIC,"{ specialeffect2 EF_ENERGYCOAT; }";\nif (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte )\n bonus bMdef,5;\nelse if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief )\n bonus bDef,3;');
  799. 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`,`armor_level`,`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,1,70,true,'bonus bVit,1;\nbonus bHPrecovRate,5;\nbonus bAddItemHealRate,3;\nbonus2 bSkillHeal,"AL_HEAL",3;');
  800. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_assassin`,`class_upper`,`location_armor`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2388,'Kandura','Kandura','Armor',20,300,4,1,true,true,true,1,70,true,'bonus bAgi,1;\nbonus bFlee,5;\nbonus bAspdRate,2;');
  801. 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`,`armor_level`,`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,1,70,true,'bonus bMdef,2;\nautobonus "{ bonus bBaseAtk,20; }",10,10000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";');
  802. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2390,'Improved_Tights','Improved Tights','Armor',20,400,6,1,true,true,true,true,true,1,75,true,'bonus bMdef,2;\nbonus bFlee2,3;');
  803. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2391,'Life_Link','Life Link','Armor',20,3500,9,1,true,true,true,true,true,1,82,true,'bonus bVit,2;\nbonus bMdef,5;\nbonus bHPrecovRate,50;');
  804. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_armor`,`armor_level`,`script`) VALUES (2392,'Old_Pant','Old Green Pantie','Armor',10,true,1,'bonus bStr,2;\nbonus bVit,2;\nbonus bMaxHP,200;\nbonus3 bAutoSpellWhenHit,"MO_CALLSPIRITS",5,20;\nbonus bMdef,1;');
  805. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`slots`,`location_armor`,`armor_level`,`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,1,100,true,true,true,true,true,true,true);
  806. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`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,1,81,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,20;\nbonus2 bSubRace,RC_DemiHuman,7;\nbonus2 bSubRace,RC_Player_Human,7;');
  807. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`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,1,61,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,600;\nbonus bSPrecovRate,10;');
  808. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`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,1,true,100,true,true,true,true,true,true,true,'bonus bMaxHP,500;');
  809. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`refineable`) VALUES (2397,'Incredible_Coat','Incredible Event Resignation Coat','Armor',10,900,2,true,false,false,true,1,true);
  810. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_hunter`,`class_upper`,`location_armor`,`armor_level`,`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,1,50,true,100,true,true,true,true,true,true,true,'bonus bMdef,5;\nbonus bCritical,6+(readparam(bLuk)/10);\nbonus bDelayRate,-23;');
  811. 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`,`armor_level`,`refineable`,`script`) VALUES (2399,'Dragon_Vest','Dragon Vest','Armor',20,500,3,1,true,false,false,true,true,1,true,'bonus bMdef,3;');
  812. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`armor_level`,`refineable`) VALUES (2401,'Sandals','Sandals','Armor',400,200,1,true,1,true);
  813. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_shoes`,`armor_level`,`refineable`) VALUES (2402,'Sandals_','Sandals','Armor',400,200,1,1,true,1,true);
  814. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`refineable`) VALUES (2403,'Shoes','Shoes','Armor',3500,400,2,true,false,false,true,1,true);
  815. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`refineable`) VALUES (2404,'Shoes_','Shoes','Armor',3500,400,2,1,true,false,false,true,1,true);
  816. 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`,`armor_level`,`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,1,true);
  817. 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`,`armor_level`,`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,1,true);
  818. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`refineable`,`script`) VALUES (2407,'Chrystal_Pumps','Crystal Pumps','Armor',20,100,true,false,false,true,1,true,'bonus bMdef,10;\nbonus bLuk,5;');
  819. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`armor_level`,`refineable`) VALUES (2408,'Cuffs','Shackles','Armor',5000,3000,3,true,1,true);
  820. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`refineable`,`script`) VALUES (2409,'Spiky_Heel','High Heels','Armor',8500,600,2,true,false,false,true,1,true,'bonus bMdef,5;');
  821. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`armor_level`,`equip_level_min`,`script`) VALUES (2410,'Sleipnir','Sleipnir','Armor',20,3500,5,true,1,94,'bonus bMdef,10;\nbonus bMaxHPrate,20;\nbonus bMaxSPrate,20;\nbonus bSPrecovRate,15;\nbonus bSpeedRate,25;');
  822. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2411,'Grave','Greaves','Armor',48000,750,5,true,true,true,1,65,true);
  823. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_crusader`,`job_knight`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2412,'Grave_','Greaves','Armor',54000,750,5,1,true,true,true,1,65,true);
  824. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_shoes`,`armor_level`,`equip_level_min`) VALUES (2413,'Safty_Boots','Safety Boots','Armor',34000,350,6,true,true,true,true,1,30);
  825. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`) VALUES (2414,'Novice_Boots','Novice Slippers','Armor',1,1,2,true,true,true,1);
  826. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2415,'Slipper','Bunny Slipper','Armor',34000,300,3,1,true,false,false,true,1,30,true,'bonus bLuk,3;\nbonus bMdef,3;');
  827. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2416,'Novice_Shoes','Novice Shoes','Armor',35000,500,2,1,true,true,true,1,40,true,'bonus bMaxHPrate,5;');
  828. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2417,'Fricco_Shoes','Fricco\'s Shoes','Armor',30000,500,3,true,false,false,true,1,65,true,'bonus bAgi,2;\nbonus2 bAddItemGroupHealRate,IG_Potion,20;');
  829. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2418,'Vidar\'s_Boots','Vidar\'s Boots','Armor',30000,650,4,true,false,false,true,1,65,true,'bonus bMaxHPrate,9;\nbonus bMaxSPrate,9;');
  830. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2419,'Goibne\'s_Combat_Boots','Goibne\'s Greaves','Armor',30000,700,4,true,false,false,true,1,54,true,'bonus bMdef,3;\nbonus bMaxHPrate,5;\nbonus bMaxSPrate,5;');
  831. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2420,'Angel\'s_Arrival','Angel\'s Reincarnation','Armor',10000,300,2,1,true,true,true,1,25,true,'bonus bMaxHP,100;');
  832. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2421,'Valkyrie_Shoes','Valkyrian Shoes','Armor',500,4,1,true,false,false,true,true,1,1,true,'bonus bUnbreakableShoes;\nif (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)\n bonus bMaxHP,(BaseLevel*5);\nelse if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)\n bonus bMaxSP,(JobLevel*2);');
  833. 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`,`armor_level`,`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,1,40,true,'bonus bMdef,10;');
  834. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2423,'Variant_Shoes','Variant Shoes','Armor',20,500,3,true,false,false,true,true,1,85,true,'bonus bMaxHPRate,20-getrefine();\nbonus bMaxSPRate,20-getrefine();\nbonus bDef,getrefine()/2;');
  835. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2424,'Tidal_Shoes','Tidal Shoes','Armor',20,300,3,1,true,false,false,true,true,1,55,true,'bonus2 bSubEle,Ele_Water,5;');
  836. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2425,'Black_Leather_Boots','Black Leather Boots','Armor',20,500,4,true,false,false,true,true,1,55,true,'bonus bAgi,1;\nif (getrefine()>=9)\nbonus bAgi,2;');
  837. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2426,'Shadow_Walk','Shadow Walk','Armor',20,2000,true,false,false,true,true,1,75,true,'bonus bMdef,10;\nif (getskilllv("AS_CLOAKING")<2) {\n bonus5 bAutoSpellWhenHit,"AS_CLOAKING",2,100,BF_MAGIC,0;\n} else\n bonus5 bAutoSpellWhenHit,"AS_CLOAKING",getskilllv("AS_CLOAKING"),100,BF_MAGIC,0;');
  838. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_shoes`,`armor_level`,`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,1,100,true,true,true,true,true,true,'bonus bMdef,4;');
  839. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`script`) VALUES (2428,'Freyja_Boots','Freyja Boots','Armor',300,10,true,false,false,true,1,'bonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;');
  840. 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`,`armor_level`,`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,1,true,100,true,true,true,true,true,true,true);
  841. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`armor_level`,`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,1,true,100,true,true,true,true,true,true,true);
  842. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,7;\nbonus bMaxSPRate,7;');
  843. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`refineable`,`script`) VALUES (2432,'Spiky_Heel_','High Heels','Armor',8500,600,2,1,true,false,false,true,1,true,'bonus bMdef,5;');
  844. 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`,`armor_level`,`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,1,true,'bonus bMaxHP,(BaseLevel*10);');
  845. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2434,'Black_Leather_Boots_','Black Leather Boots','Armor',20,500,4,1,true,false,false,true,true,1,55,true,'bonus bAgi,1;\nif (getrefine()>=9)\n bonus bAgi,2;');
  846. 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`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,100;\nbonus bMdef,1;\nbonus2 bSubRace,RC_DemiHuman,1;\nbonus2 bSubRace,RC_Player_Human,1;');
  847. 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`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,100;\nbonus bMdef,1;\nbonus2 bSubRace,RC_DemiHuman,1;\nbonus2 bSubRace,RC_Player_Human,1;');
  848. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`location_shoes`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,100;\nbonus bMdef,1;\nbonus2 bSubRace,RC_DemiHuman,1;\nbonus2 bSubRace,RC_Player_Human,1;');
  849. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bFlee,5;\nbonus bAgi,1;');
  850. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_shoes`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bMaxHPRate,17;\nbonus bMaxSPRate,8;\nbonus2 bHPRegenRate,20,10000;\nbonus2 bSPRegenRate,3,10000;');
  851. 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`,`armor_level`,`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,1,70,true,'bonus bAgi,1;\nbonus bSPrecovRate,5;');
  852. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`armor_level`,`refineable`,`script`) VALUES (2441,'Beach_Sandal','Beach Sandals','Armor',20,200,true,1,true,'bonus bStr,1;\nbonus bInt,1;\nbonus bAgi,1;\nbonus2 bSubEle,Ele_Fire,10;');
  853. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_shoes`,`armor_level`,`script`) VALUES (2442,'Boots_Perforated','Red Stocking Boots','Armor',7,true,1,'bonus bLuk,2;\nbonus bHPrecovRate,10;\nbonus bSPrecovRate,10;\nbonus3 bAutoSpellWhenHit,"WZ_QUAGMIRE",3,20;\nbonus bMdef,1;');
  854. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_shoes`,`armor_level`) VALUES (2443,'Fish_Shoes','Fisher\'s Boots','Armor',10,250,true,1);
  855. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`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,1,81,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,10;\nbonus2 bSubRace,RC_DemiHuman,4;\nbonus2 bSubRace,RC_Player_Human,4;\nbonus3 bAutoSpellWhenHit,"AL_INCAGI",1,10;');
  856. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`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,1,61,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,5;\nbonus bMaxSPRate,5;');
  857. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`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,1,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,5;');
  858. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_shoes`,`armor_level`,`refineable`) VALUES (2447,'Military_Boots','Army Boots','Armor',1000,5,true,false,false,true,1,true);
  859. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_shoes`,`armor_level`,`refineable`,`script`) VALUES (2448,'Air_Boss','Air Boss','Armor',500,2,true,1,true,'bonus bAgi,1;');
  860. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`armor_level`,`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,1,85,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,20-getrefine();\nbonus bMaxSPRate,20-getrefine();\nbonus bDef,getrefine()/2;');
  861. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_shoes`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2450,'Vital_Tree_Shoes','Vital Tree Shoes','Armor',20,500,4,true,false,false,true,true,1,60,true,'bonus bMaxHPrate,10;\nbonus2 bHPRegenRate,30,10000;\nbonus bHealpower2,5;\nbonus bAddItemHealRate,5;\nbonus bMdef,3;\nbonus bVit,2;');
  862. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`armor_level`,`refineable`) VALUES (2501,'Hood','Hood','Armor',1000,200,1,true,1,true);
  863. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`armor_level`,`refineable`) VALUES (2502,'Hood_','Hood','Armor',1000,200,1,1,true,1,true);
  864. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`refineable`) VALUES (2503,'Muffler','Muffler','Armor',5000,400,2,true,false,false,true,1,true);
  865. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`refineable`) VALUES (2504,'Muffler_','Muffler','Armor',5000,400,2,1,true,false,false,true,1,true);
  866. 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`,`armor_level`,`refineable`) VALUES (2505,'Manteau','Manteau','Armor',32000,600,4,true,true,true,true,true,true,true,true,true,true,true,true,1,true);
  867. 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`,`armor_level`,`refineable`) VALUES (2506,'Manteau_','Manteau','Armor',32000,600,4,1,true,true,true,true,true,true,true,true,true,true,true,true,1,true);
  868. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2507,'Cape_Of_Ancient_Lord','Ancient Cape','Armor',82000,600,2,true,false,false,true,1,40,true,'bonus bAgi,1;');
  869. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`refineable`,`script`) VALUES (2508,'Ragamuffin_Cape','Ragamuffin Manteau','Armor',56000,500,1,true,false,false,true,1,true,'bonus bUnbreakableGarment;\nbonus bMdef,10;');
  870. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2509,'Clack_Of_Servival','Survivor\'s Manteau','Armor',20000,550,true,true,true,true,true,1,75,true,'bonus bMdef,5;\nbonus bVit,10;');
  871. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`script`) VALUES (2510,'Novice_Hood','Somber Novice Hood','Armor',1,1,2,true,true,true,1,'bonus2 bSubEle,Ele_Neutral,20;');
  872. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2511,'Skeleton\'s_Cape','Skeleton Manteau','Armor',5000,700,1,true,false,false,true,1,75,true,'bonus bStr,2;\nbonus bInt,-3;\nbonus bDex,2;\nbonus bVit,-3;\nbonus bLuk,2;\nbonus bAgi,-4;');
  873. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2512,'Novice_Manteau','Novice Manteau','Armor',50000,500,2,1,true,true,true,1,40,true,'bonus2 bSubEle,Ele_Neutral,10;');
  874. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2513,'Celestial_Robe','Heavenly Maiden Robe','Armor',20,500,3,1,true,false,false,true,1,80,true);
  875. 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`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2514,'Pauldron','Pauldron','Armor',20,800,5,1,true,true,true,true,true,true,true,true,true,true,1,80,true);
  876. 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`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2515,'Wing_Of_Eagle','Eagle Wing','Armor',20000,300,1,1,true,true,true,true,true,1,85,true);
  877. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2516,'Falcon_Robe','Falcon Muffler','Armor',30000,400,3,true,false,false,true,1,65,true,'bonus bFlee,15;\nbonus bFlee2,5;');
  878. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2517,'Vali\'s_Manteau','Vali\'s Manteau','Armor',30000,600,4,true,false,false,true,1,65,true,'bonus2 bSubEle,Ele_Neutral,15;');
  879. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2518,'Morpheus\'s_Shawl','Morpheus\'s Shawl','Armor',30000,600,3,true,false,false,true,1,33,true,'bonus bMaxSPrate,10;\nbonus bMdef,3;');
  880. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2519,'Morrigane\'s_Manteau','Morrigane\'s Manteau','Armor',30000,600,3,true,false,false,true,1,61,true,'bonus bLuk,2;\nbonus bFlee2,8;');
  881. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2520,'Goibne\'s_Shoulder_Arms','Goibne\'s Spaulders','Armor',30000,700,3,true,false,false,true,1,54,true,'bonus bLongAtkDef,10;\nbonus bMdef,2;\nbonus bVit,1;');
  882. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2521,'Angel\'s_Warmth','Angelic Cardigan','Armor',10000,400,2,1,true,true,true,1,20,true,'bonus bHPrecovRate,5;');
  883. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2522,'Undershirt','Undershirt','Armor',20000,150,2,true,1,1,true,'bonus bMdef,1;');
  884. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2523,'Undershirt_','Undershirt','Armor',20000,150,2,1,true,1,1,true,'bonus bMdef,1;');
  885. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2524,'Valkyrie_Manteau','Valkyrian Manteau','Armor',500,3,1,true,false,false,true,true,1,1,true,'bonus bUnbreakableGarment;\nif (BaseClass == Job_Mage || BaseClass == Job_Archer || BaseClass == Job_Acolyte)\n bonus bFlee2,5+(getequiprefinerycnt(EQI_GARMENT)*2);\nelse if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief)\n bonus bShortWeaponDamageReturn,5+(getequiprefinerycnt(EQI_GARMENT)*2);');
  886. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2525,'Cape_Of_Ancient_Lord_','Ancient Cape','Armor',82000,600,2,1,true,false,false,true,1,40,true,'bonus bAgi,1;');
  887. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`) VALUES (2526,'Dragon_Scale_Coat','Coat of Dragon Scale','Armor',20,10,4,true,1,50,true);
  888. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2527,'Dragon_Breath','Dragon Breath','Armor',20,600,4,1,true,false,false,true,true,1,48,true,'bonus2 bSubRace,RC_Dragon,15;');
  889. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2528,'Wool_Scarf','Wool Scarf','Armor',20,500,3,1,true,false,false,true,true,1,55,true,'bonus bMdef,4;');
  890. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2529,'Rider_Insignia','Rider Insignia','Armor',20,500,4,true,false,false,true,true,1,55,true,'bonus bAgi,2;');
  891. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2530,'Rider_Insignia_','Rider Insignia','Armor',20,500,4,1,true,false,false,true,true,1,55,true,'bonus bAgi,2;');
  892. 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`,`armor_level`,`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,1,70,true,'bonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,20;');
  893. 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`,`armor_level`,`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,1,70,true,'bonus bMdef,3;\nbonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;');
  894. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`script`) VALUES (2533,'Freyja_Cape','Freyja Cape','Armor',200,10,true,false,false,true,1,'bonus2 bSubRace,RC_DemiHuman,15;\nbonus2 bSubRace,RC_Player_Human,15;');
  895. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus2 bSubEle,Ele_Neutral,17;\nbonus bFlee,17;');
  896. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_mage`,`job_sage`,`job_soullinker`,`job_wizard`,`location_garment`,`armor_level`,`script`) VALUES (2535,'Cloak_Of_Survival_C','Cloak Of Survival','Armor',1,5,true,true,true,true,true,1,'bonus bVit,10;\nbonus bMdef,10;');
  897. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2536,'Skin_Of_Ventus','Skin of Ventus','Armor',20,250,2,1,true,false,false,true,1,60,true,'bonus bMdef,2;\nbonus bMaxHP,200;\nbonus bFlee,10;');
  898. 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`,`armor_level`,`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,1,true,'bonus2 bSubEle,Ele_Neutral,5;\nbonus bMaxHP,100;\nbonus2 bAddDamageClass,1916,10;\nbonus2 bAddDamageClass,1917,10;');
  899. 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`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,50;\nbonus bMdef,1;\nbonus2 bSubRace,RC_DemiHuman,1;\nbonus2 bSubRace,RC_Player_Human,1;');
  900. 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`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,50;\nbonus bMdef,1;\nbonus2 bSubRace,RC_DemiHuman,1;\nbonus2 bSubRace,RC_Player_Human,1;');
  901. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`slots`,`job_gunslinger`,`location_garment`,`armor_level`,`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,1,80,true,100,true,true,true,true,true,true,'bonus bMaxHP,50;\nbonus bMdef,1;\nbonus2 bSubRace,RC_DemiHuman,1;\nbonus2 bSubRace,RC_Player_Human,1;');
  902. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_garment`,`armor_level`,`equip_level_min`,`script`) VALUES (2541,'Asprika','Asprika','Armor',20,400,5,true,1,94,'bonus bMdef,5;\nbonus3 bSubEle,Ele_Neutral,30,BF_SHORT;\nbonus3 bSubEle,Ele_Water,30,BF_SHORT;\nbonus3 bSubEle,Ele_Earth,30,BF_SHORT;\nbonus3 bSubEle,Ele_Fire,30,BF_SHORT;\nbonus3 bSubEle,Ele_Wind,30,BF_SHORT;\nbonus3 bSubEle,Ele_Poison,30,BF_SHORT;\nbonus3 bSubEle,Ele_Holy,30,BF_SHORT;\nbonus3 bSubEle,Ele_Dark,30,BF_SHORT;\nbonus3 bSubEle,Ele_Ghost,30,BF_SHORT;\nbonus3 bSubEle,Ele_Undead,30,BF_SHORT;\nbonus bFlee,30;\nskill "AL_TELEPORT",1;\nbonus bUnbreakableGarment;');
  903. 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`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2542,'Flame_Manteau','Flame Manteau of Naght Sieger','Armor',20,70,4,1,true,false,false,true,true,1,70,true,'bonus bMaxHPRate,5;\nbonus bMdef,2;\nbonus bMatkRate,1;\nbonus2 bAddEle,Ele_Fire,2;');
  904. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_garment`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bFlee,13;\nbonus2 bSubEle,Ele_Neutral,13;\nbonus bFlee2,1;');
  905. 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`,`armor_level`,`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,1,true,'bonus2 bSubEle,Ele_Water,5;\nbonus2 bSubEle,Ele_Earth,5;\nbonus2 bSubRace,RC_Plant,5;\nbonus2 bSubRace,RC_Brute,5;\nbonus2 bSubRace,RC_Player_Doram,5;');
  906. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_monk`,`job_priest`,`class_upper`,`location_garment`,`armor_level`,`equip_level_min`,`refineable`,`script`) VALUES (2545,'Musika','Musika','Armor',20,500,2,1,true,true,true,true,1,70,true,'bonus bMdef,3;\nbonus3 bAutoSpellwhenhit,"AL_HEAL",max(1,getskilllv("AL_HEAL")),20;');
  907. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_garment`,`armor_level`,`refineable`,`script`) VALUES (2546,'Beach_Manteau','Beach Manteau','Armor',20,600,1,true,1,true,'bonus bStr,1;\nbonus bInt,1;\nbonus2 bSubEle,Ele_Fire,10;');
  908. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_garment`,`armor_level`,`refineable`,`script`) VALUES (2547,'Cheap_Running_Shirts','Cheap Undershirt','Armor',8,true,1,true,'bonus bDex,2;\nbonus bFlee,10;\nbonus2 bSubEle,Ele_Neutral,10;\nbonus bMdef,1;');
  909. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_garment`,`armor_level`,`equip_level_min`,`script`) VALUES (2548,'Muffler_C','Neo Muffler','Armor',5,true,false,false,true,true,1,95,'bonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;\nbonus bMaxHPrate,10;\nbonus2 bSubEle,Ele_Water,5;\nbonus2 bSubEle,Ele_Fire,5;\nbonus2 bSubEle,Ele_Holy,5;\nbonus2 bSubEle,Ele_Dark,5;');
  910. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_garment`,`armor_level`,`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,1,81,true,100,true,true,true,true,true,true,true,'bonus bMaxHPRate,5;\nbonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;');
  911. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_garment`,`armor_level`,`refineable`) VALUES (2550,'Fisher\'s_Muffler','Fisher\'s Muffler','Armor',20,200,true,1,true);
  912. 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`,`armor_level`,`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,1,55,true,100,true,true,true,true,true,true,true,'bonus bAgi,2;');
  913. 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`,`armor_level`,`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,1,70,true,100,true,true,true,true,true,true,true,'bonus bMdef,3;\nbonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,200,BF_MAGIC,0;');
  914. 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`,`armor_level`,`refineable`,`script`) VALUES (2553,'Dragon_Manteau','Dragon Manteau','Armor',20,1000,5,1,true,false,false,true,true,1,true,'bonus bAgi,1;\nbonus bMdef,5;');
  915. 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`,`armor_level`,`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,1,90,true,'bonus2 bSubEle,Ele_Neutral,7;\nbonus2 bSubEle,Ele_Water,7;\nbonus2 bSubEle,Ele_Earth,7;\nbonus2 bSubEle,Ele_Fire,7;\nbonus2 bSubEle,Ele_Wind,7;\nbonus2 bSubEle,Ele_Poison,7;\nbonus2 bSubEle,Ele_Holy,7;\nbonus2 bSubEle,Ele_Dark,7;\nbonus2 bSubEle,Ele_Ghost,7;\nbonus2 bSubEle,Ele_Undead,7;\nbonus bMaxSP,(BaseLevel/3)+(getrefine()*10);\nbonus2 bSPDrainRate,10,1;\nbonus bMdef,3;');
  916. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2601,'Ring','Ring','Armor',30000,100,true,false,false,true,true,1,20,'bonus bStr,2;');
  917. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2602,'Earring','Earring','Armor',30000,100,true,false,false,true,true,1,20,'bonus bInt,2;');
  918. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2603,'Necklace','Necklace','Armor',30000,100,true,false,false,true,true,1,20,'bonus bVit,2;');
  919. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2604,'Glove','Glove','Armor',30000,100,true,false,false,true,true,1,20,'bonus bDex,2;');
  920. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2605,'Brooch','Brooch','Armor',30000,100,true,false,false,true,true,1,20,'bonus bAgi,2;');
  921. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2607,'Clip','Clip','Armor',30000,100,1,true,true,1,'bonus bMaxSP,10;');
  922. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2608,'Rosary','Rosary','Armor',15000,100,true,false,false,true,true,1,20,'bonus bMdef,5;\nbonus bLuk,2;');
  923. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2609,'Skul_Ring','Skull Ring','Armor',10000,100,true,true,1);
  924. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2610,'Gold_Ring','Gold Ring','Armor',30000,100,true,true,1);
  925. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2611,'Silver_Ring','Silver Ring','Armor',20000,100,true,true,1);
  926. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2612,'Flower_Ring','Flower Ring','Armor',1500,100,true,true,1);
  927. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2613,'Diamond_Ring','Diamond Ring','Armor',45000,100,true,true,1);
  928. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2614,'An_Eye_Of_Dullahan','Eye of Dullahan','Armor',90000,100,true,false,false,true,true,1,50,'bonus2 bResEff,Eff_Poison,10000;\nbonus2 bSubRace,RC_Undead,4;\nbonus2 bSubRace,RC_Demon,4;');
  929. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2615,'Safety_Ring','Safety Ring','Armor',75000,100,3,true,false,false,true,true,1,40,'bonus bMdef,3;');
  930. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2616,'Critical_Ring','Critical Ring','Armor',75000,100,true,false,false,true,true,1,40,'bonus bCritical,5;');
  931. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2617,'Mitten_Of_Presbyter','Celebrant\'s Mitten','Armor',2,100,1,true,false,false,true,true,1,35,'bonus bInt,1;');
  932. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2618,'Matyr\'s_Flea_Guard','Matyr\'s Leash','Armor',2,100,1,true,false,false,true,true,1,35,'bonus bAgi,1;');
  933. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2619,'Thimble_Of_Archer','Bow Thimble','Armor',10000,100,true,true,true,true,true,1,65,'bonus bLongAtkRate,3;');
  934. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2620,'Ring_Of_Rogue','Rogue\'s Treasure','Armor',10000,100,true,true,true,true,true,true,1,70,'if (readparam(bStr)>=90) {\n bonus bHit,10;\n bonus bFlee,10;\n}\nif (readparam(bAgi)>=90) {\n bonus bBaseAtk,10;\n bonus bCritical,10;\n}');
  935. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2621,'Ring_','Ring','Armor',30000,200,1,true,false,false,true,true,1,90,'bonus bStr,1;');
  936. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2622,'Earring_','Earring','Armor',30000,200,1,true,false,false,true,true,1,90,'bonus bInt,1;');
  937. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2623,'Necklace_','Necklace','Armor',30000,200,1,true,false,false,true,true,1,90,'bonus bVit,1;');
  938. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2624,'Glove_','Glove','Armor',30000,200,1,true,false,false,true,true,1,90,'bonus bDex,1;');
  939. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2625,'Brooch_','Brooch','Armor',30000,200,1,true,false,false,true,true,1,90,'bonus bAgi,1;');
  940. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2626,'Rosary_','Rosary','Armor',15000,200,1,true,false,false,true,true,1,90,'bonus bMdef,3;\nbonus bLuk,1;');
  941. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`) VALUES (2627,'Belt','Belt','Armor',20000,1200,1,true,true,1,25);
  942. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`) VALUES (2628,'Novice_Armlet','Novice Armlet','Armor',400,200,1,true,true,true,true,1,1);
  943. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2629,'Magingiorde','Megingjard','Armor',20,8000,2,true,true,1,94,'bonus bStr,40;\nbonus bMdef,7;');
  944. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2630,'Brysinggamen','Brisingamen','Armor',20,1500,1,true,true,1,94,'bonus bStr,6;\nbonus bAgi,6;\nbonus bVit,6;\nbonus bInt,6;\nbonus bLuk,10;\nbonus bMdef,5;');
  945. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`) VALUES (2631,'First_Age_Ring','Celebration Ring','Armor',1,10,true,true,1,1);
  946. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`gender`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1;\nskill "WE_FEMALE",1;\nskill "WE_CALLPARTNER",1;');
  947. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`gender`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'skill "WE_MALE",1;\nskill "WE_FEMALE",1;\nskill "WE_CALLPARTNER",1;');
  948. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2636,'Gold_Ring_','Gold Christmas Ring','Armor',30000,100,true,true,1,'bonus bLuk,1;');
  949. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2637,'Silver_Ring_','Silver Christmas Ring','Armor',20000,100,true,true,1,'bonus bLuk,1;');
  950. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2638,'Exorcize_Sachet','Sacred Incense','Armor',20000,100,true,true,1,'bonus bStr,1;\nbonus bLuk,1;');
  951. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2639,'Purification_Sachet','Occult Incense','Armor',20000,100,true,true,1,'bonus bInt,1;\nbonus bAgi,1;');
  952. 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`,`armor_level`,`script`) VALUES (2640,'Kafra_Ring','Kafra Ring','Armor',40000,200,1,true,false,false,true,true,1,'bonus bStr,1;\nbonus bInt,1;\nbonus bAgi,1;\nbonus bLuk,1;\nbonus bMdef,1;');
  953. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2641,'Fashionable_Sack','Fashion Hip Sack','Armor',20,700,true,true,true,true,true,1,50,'bonus bStr,2;');
  954. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true);
  955. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2643,'Serin\'s_Gold_Ring_','Serin\'s Gold Ring','Armor',45000,100,true,true,1);
  956. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkRate,5;');
  957. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2645,'Moonlight_Ring','Moonlight Ring','Armor',40000,200,true,true,true,true,true,true,1,60,'bonus bMdef,2;');
  958. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2646,'Bunch_Of_Carnation','Bunch of Carnations','Armor',2,100,true,true,1,'bonus bAllStats,3;');
  959. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bMaxHP,10;');
  960. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2648,'Morpheus\'s_Ring','Morpheus\'s Ring','Armor',30000,100,true,false,false,true,true,1,33,'bonus bInt,1;\nbonus bMaxSPrate,5;');
  961. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2649,'Morpheus\'s_Armlet','Morpheus\'s Bracelet','Armor',30000,100,true,false,false,true,true,1,33,'bonus bInt,1;\nbonus bMaxSPrate,5;');
  962. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2650,'Morrigane\'s_Belt','Morrigane\'s Belt','Armor',30000,200,true,false,false,true,true,1,61,'bonus bBaseAtk,5;\nbonus bCritical,3;');
  963. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2651,'Morrigane\'s_Pendant','Morrigane\'s Pendant','Armor',30000,200,true,false,false,true,true,1,61,'bonus bStr,2;\nbonus bCritical,3;');
  964. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2652,'Cursed_Lucky_Brooch','Goddess of Fortune\'s Cursed Brooch','Armor',20,100,true,true,1,40,'bonus bCritical,6;\nbonus2 bAddEff2,Eff_Curse,50;');
  965. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`) VALUES (2653,'Sacrifice_Ring','Sacrifice Ring','Armor',20,100,true,true,1,90);
  966. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2654,'Shinobi\'s_Sash','Shinobi Sash','Armor',20000,300,1,true,true,true,true,true,true,1,30,'bonus bStr,1;\nbonus bAgi,1;\nbonus bMdef,1;');
  967. 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`,`armor_level`,`equip_level_min`) VALUES (2655,'Bloody_Iron_Ball','Bloodied Shackle Ball','Armor',50000,4000,true,false,false,true,true,1,1);
  968. 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`,`armor_level`,`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,1,'bonus bMaxHP,50;');
  969. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`) VALUES (2657,'Lab_Passport','Laboratory Permit','Armor',20,100,true,true,1,1);
  970. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2658,'Nile_Rose_','Nile Rose','Armor',2,100,1,true,true,1,'bonus bMaxHP,10;');
  971. 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`,`armor_level`,`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,1,'bonus bMdef,3;\nbonus bInt,2;\nbonus bMaxSPrate,5;');
  972. 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`,`armor_level`,`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,1,'bonus bMdef,3;\nbonus bStr,3;\nbonus bBaseAtk,10;');
  973. 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`,`armor_level`,`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,1,'bonus bMdef,3;\nbonus bAgi,3;\nbonus bFlee,5;');
  974. 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`,`armor_level`,`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,1,'bonus bMdef,3;\nbonus bDex,3;\nbonus bHit,10;');
  975. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2663,'Gauntlet_Of_Accuracy','Gauntlet of Hit','Armor',20,900,true,true,1,75,'bonus bHit,15;\nbonus bStr,1;');
  976. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2664,'Scarf_Belt','Belcarf','Armor',20,200,true,false,false,true,true,1,75,'bonus bDex,2;\nbonus bInt,1;');
  977. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2665,'Ring_Of_Exorcism','Exorcising Ring','Armor',20,500,true,true,true,true,true,1,60,'bonus bMdef,1;\nbonus2 bExpAddRace,RC_Undead,5;\nbonus2 bExpAddRace,RC_Demon,5;');
  978. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2666,'Lamp_Of_Hope','Lantern of Hope','Armor',20,100,true,true,1,1,'bonus bStr,2;\nbonus2 bResEff,Eff_Blind,1000;');
  979. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2667,'Glove_Of_Archer','Renown Archer\'s Gloves','Armor',20,300,true,false,false,true,true,1,60,'bonus bHit,5;\nbonus bCritical,5;\nbonus bDex,1;');
  980. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true);
  981. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2669,'Golden_Necklace_','RJC Necklace','Armor',30000,100,1,true,true,1,'bonus bMaxSP,10;');
  982. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,30,100,true,true,true,true,true,true,true,'bonus bFlee,5;');
  983. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2671,'Thimble_Of_Archer_','Bow Thimble','Armor',10000,100,1,true,true,true,true,true,1,65,'bonus bLongAtkRate,3;');
  984. 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`,`armor_level`) VALUES (2672,'Anniversary_Ring','3rd Anniversary Celebration Ring','Armor',20,100,true,false,false,true,true,1);
  985. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,48,100,true,true,true,true,true,true,true,true,'bonus bBaseAtk,10;\nbonus bSPrecovRate,3;');
  986. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true);
  987. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2675,'Lord_Ring','Lord Ring','Armor',10,true,true,1,1,'bonus bAllStats,3;');
  988. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,7618,100;');
  989. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2677,'Spiritual_Ring','Spiritual Ring','Armor',20,100,true,true,1,'bonus bInt,2;\nbonus bDex,1;');
  990. 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`,`armor_level`,`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,1,'bonus bStr,2;\nbonus bVit,1;\nbonus bBaseAtk,15;\nbonus2 bSubEle,Ele_Fire,10;\nbonus3 bAutoSpell,"CH_SOULCOLLECT",1,30;\nbonus3 bAutoSpell,"MO_EXPLOSIONSPIRITS",1,10;\nbonus3 bAutoSpell,"PA_PRESSURE",2,30;\nbonus3 bAutoSpell,"MG_FIREBALL",1,150;\nbonus3 bAutoSpell,"KN_BOWLINGBASH",5,20;');
  991. 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`,`armor_level`,`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,1,'bonus bAgi,2;\nbonus bVit,1;\nbonus bMdef,2;\nbonus4 bAutoSpellWhenHit,"WZ_QUAGMIRE",1,50,0;\nbonus3 bAutoSpellWhenHit,"AS_SPLASHER",10,20;\nbonus3 bAutoSpellWhenHit,"AL_HEAL",10,30;\nbonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",3,20;\nbonus3 bAutoSpellWhenHit,"CG_TAROTCARD",5,20;');
  992. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2680,'Lesser_Elemental_Ring','Lesser Elemental Ring','Armor',20,100,true,true,1,'bonus bAllStats,1;\nbonus3 bAutoSpell,"WZ_ESTIMATION",1,80;\nbonus3 bAutoSpell,"MC_IDENTIFY",1,50;\nbonus3 bAutoSpell,"TF_PICKSTONE",1,100;\nbonus3 bAutoSpell,"BS_GREED",1,10;\nbonus3 bAutoSpellWhenHit,"TK_RUN",5,20;\nbonus3 bAutoSpellWhenHit,"TK_HIGHJUMP",3,30;\nbonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,100;\nbonus3 bAutoSpellWhenHit,"TF_BACKSLIDING",1,50;');
  993. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2681,'Republic_Ring','Republic Anniversary Ring','Armor',20,1000,true,true,1,'bonus bAllStats,3;');
  994. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2682,'Ring_Of_Water','Ring of Water','Armor',20,100,1,true,false,false,true,true,1,20,'bonus2 bSubEle,Ele_Water,5;');
  995. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2683,'Ring_Of_Fire','Ring of Fire','Armor',20,100,1,true,false,false,true,true,1,20,'bonus2 bSubEle,Ele_Fire,5;');
  996. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2684,'Ring_Of_Wind','Ring of Wind','Armor',20,100,1,true,false,false,true,true,1,20,'bonus2 bSubEle,Ele_Wind,5;');
  997. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2685,'Ring_Of_Earth','Ring of Earth','Armor',20,100,1,true,false,false,true,true,1,20,'bonus2 bSubEle,Ele_Earth,5;');
  998. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`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,1,73,100,true,true,true,true,true,true,true,true,'bonus bInt,1;');
  999. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`armor_level`,`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,1,56,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_Plant,3;');
  1000. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bCritical,10;');
  1001. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bInt,3;');
  1002. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bStr,4;');
  1003. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bVit,4;');
  1004. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bDex,4;');
  1005. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bAgi,4;');
  1006. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,5;\nbonus bLuk,4;');
  1007. 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`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,5;');
  1008. 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`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3;\nbonus bInt,2;\nbonus bMaxSPrate,5;');
  1009. 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`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3;\nbonus bStr,3;\nbonus bBaseAtk,10;');
  1010. 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`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3;\nbonus bAgi,3;\nbonus bFlee,5;');
  1011. 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`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bMdef,3;\nbonus bDex,3;\nbonus bHit,10;');
  1012. 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`,`armor_level`,`equip_level_min`) VALUES (2700,'Red_Silk_Seal','Red Silk Seal','Armor',20,100,true,true,true,true,true,true,1,60);
  1013. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2701,'Orleans_Glove','Orleans\'s Glove','Armor',20,100,1,true,false,false,true,true,true,1,90,'bonus bDex,2;\nbonus bMatkRate,3;');
  1014. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2702,'Bison_Horn','Bison Horn','Armor',20,100,1,true,false,false,true,true,true,1,90,'bonus bAgi,2;');
  1015. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2703,'Expert_Ring','Expert Ring','Armor',20,150,1,true,false,false,true,true,true,1,50,'bonus bDelayRate,-5;\nbonus bUseSPrate,5;');
  1016. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,'bonus bMdef,4;');
  1017. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,12018,500;');
  1018. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2706,'Handcuff','Arrest Handcuffs','Armor',true,true,1);
  1019. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2707,'Gusli','GUSLI','Armor',20,100,true,true,1);
  1020. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus3 bAutoSpell,"MG_FIREBOLT",5,300;');
  1021. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2709,'5_Anniversary_Coin','5th Anniversary Coin','Armor',2,true,true,1,'bonus bAtkRate,5;\nbonus bMatkRate,5;');
  1022. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2710,'Bloody_Iron_Ball_C','Bloody Iron Ball','Armor',1,true,false,false,true,true,1,'bonus bBaseAtk,30;');
  1023. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2711,'Spiritual_Ring_C','Spiritual Ring','Armor',1,true,true,1,'bonus bInt,2;\nbonus bDex,2;');
  1024. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2712,'Ragnarok_Limited_Ed','Ragnarok Limited Edition','Armor',300,true,true,1,30,'bonus bVit,3;\nbonus bAgi,3;\nbonus bLuk,3;');
  1025. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true);
  1026. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2714,'Marvelous_Pandent','Marvelous Pendant','Armor',100,1,true,true,1);
  1027. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2715,'Skul_Ring_','Skull Ring','Armor',10000,100,1,true,true,1,'bonus2 bSubRace,RC_Undead,1;');
  1028. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2716,'Librarian_Glove','Librarian Glove','Armor',20,100,1,true,true,true,true,true,1,80,'bonus bMaxSP,20;');
  1029. 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`,`armor_level`,`equip_level_min`) VALUES (2717,'Pocket_Watch_','Pocket Watch','Armor',20,200,true,true,true,true,true,true,1,80);
  1030. 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`,`armor_level`,`equip_level_min`) VALUES (2718,'Lunatic_Brooch','Lunatic Brooch','Armor',20,200,1,true,true,true,true,true,1,65);
  1031. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2719,'Iron_Wrist','Iron Wrist','Armor',20,700,1,true,true,true,true,true,true,true,true,1,50,'bonus2 bSkillAtk,"SM_BASH",6;\nbonus2 bSkillAtk,"MC_MAMMONITE",6;');
  1032. 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`,`armor_level`,`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,1,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkRate,5;\nbonus bHit,10;\nbonus bMaxHP,500;\nbonus bMaxSP,50;\nbonus3 bAddEff,Eff_Stun,100,ATF_SHORT;');
  1033. 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`,`armor_level`,`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,1,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkRate,5;\nbonus bFlee,10;\nbonus bMaxHP,300;\nbonus bMaxSP,80;\nbonus3 bAddEff,Eff_Poison,100,ATF_SHORT;');
  1034. 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`,`armor_level`,`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,1,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkRate,5;\nbonus bMdef,6;\nbonus bMaxHP,600;\nbonus3 bAddEff,Eff_Silence,100,ATF_SHORT;');
  1035. 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`,`armor_level`,`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,1,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkRate,5;\nbonus bMdef,6;\nbonus bMaxHP,600;\nbonus2 bAddEffWhenHit,Eff_Stone,100;');
  1036. 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`,`armor_level`,`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,1,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkRate,5;\nbonus bCritical,10;\nbonus bMaxHP,300;\nbonus bMaxSP,80;\nbonus3 bAddEff,Eff_Blind,100,ATF_LONG;');
  1037. 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`,`armor_level`,`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,1,70,100,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkRate,5;\nbonus bAspdRate,10;\nbonus bMaxHP,500;\nbonus bMaxSP,50;\nbonus3 bAddEff,Eff_Curse,100,ATF_SHORT;');
  1038. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2726,'Icarus_Wing','Icarus Wings','Armor',20,100,true,true,true,true,1,70,'bonus bMaxSP,50;\nbonus bDex,3;');
  1039. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2727,'Bowman_Scarf','Bowman Scarf','Armor',20,200,true,true,true,true,1,70,'bonus bMaxSP,50;\nbonus bDex,3;');
  1040. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2728,'Cursed_Hand','Cursed Hand','Armor',20,50,1,true,false,false,true,true,1,80,'bonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;\nbonus bHit,10;\nbonus bHPrecovRate,20;');
  1041. 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`,`armor_level`,`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,1,'bonus bMaxHP,100;\nbonus bMaxSP,100;\nbonus bHealPower,5;\nbonus2 bAddDamageClass,1916,10;\nbonus2 bAddDamageClass,1917,10;');
  1042. 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`,`armor_level`,`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,1,80,100,true,true,true,true,true,true,'bonus bMaxHP,50;\nbonus bAspdRate,3;');
  1043. 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`,`armor_level`,`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,1,80,100,true,true,true,true,true,true,'bonus bMaxSP,50;\nbonus bCastRate,-1;');
  1044. 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`,`armor_level`,`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,1,80,100,true,true,true,true,true,true,'bonus bCritical,5;');
  1045. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_gunslinger`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,70,100,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkRate,5;\nbonus bCritical,10;\nbonus bMaxHP,300;\nbonus bMaxSP,80;\nbonus3 bAddEff,Eff_Blind,100,ATF_LONG;');
  1046. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true);
  1047. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true);
  1048. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2736,'Navel_Ring','Navel Ring','Armor',20,100,true,false,false,true,true,1,75,'bonus bDex,3;\nbonus bLuk,3;\nbonus bMdef,2;');
  1049. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2737,'Foot_Ring','Foot Ring','Armor',20,150,true,false,false,true,true,1,75,'bonus bVit,3;\nbonus bMaxHPRate,10;');
  1050. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,6;\nbonus bMatkRate,6;');
  1051. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkRate,5;');
  1052. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,3;\nbonus bMatkRate,3;');
  1053. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bAllStats,1;\nbonus bNoCastCancel;\nbonus bCastRate,10;\nskill "AL_HEAL",1;\nskill "AL_TELEPORT",1;');
  1054. 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`,`armor_level`,`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,1,70,'bonus bInt,2;\nbonus bDex,1;\nbonus bMdef,2;\nautobonus3 "{ bonus bHealPower,20; }",100,3000,"AL_HEAL","{ specialeffect2 EF_HEAL3; }";\nautobonus3 "{ bonus bHealPower,20; }",100,3000,"AM_POTIONPITCHER","{ specialeffect2 EF_HEAL3; }";\nautobonus3 "{ bonus bHealPower,20; }",100,3000,"PR_SANCTUARY","{ specialeffect2 EF_HEAL3; }";');
  1055. 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`,`armor_level`,`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,1,70,'bonus bCastrate,-10;\nbonus bDelayRate,5;');
  1056. 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`,`armor_level`,`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,1,70,'bonus bMdef,2;\nbonus bMaxSP,25;');
  1057. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2746,'Cold_Heart','Cold Heart','Armor',20,100,1,true,true,true,true,1,80,'bonus bAgi,3;');
  1058. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_rogue`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2747,'Black_Cat','Black Cat','Armor',20,100,1,true,true,true,true,1,80,'bonus bDex,3;');
  1059. 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`,`armor_level`,`equip_level_min`,`script`,`unequip_script`) VALUES (2748,'Cursed_Star','Cursed Star','Armor',20,200,true,true,true,true,true,true,1,84,'bonus bMdef,3;\nbonus bDex,2;\nbonus bLuk,-1;\nbonus2 bHPLossRate,50,10000;\nbonus3 bAddEff,Eff_Curse,200,ATF_WEAPON|ATF_LONG|ATF_TARGET;','heal -300,0;');
  1060. 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`,`armor_level`,`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,1,90,'bonus bMdef,2;\nbonus bAgi,2;\nbonus bDex,1;');
  1061. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,'if (BaseLevel<80) {\n bonus bMaxHP,400;\n bonus bMaxSP,200;\n}');
  1062. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bAddClass,Class_All,5;\nbonus bMatkrate,5;');
  1063. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Formless,15;');
  1064. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_undead,15;');
  1065. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Brute,15;');
  1066. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Plant,15;');
  1067. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Insect,15;');
  1068. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Fish,15;');
  1069. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Demon,15;');
  1070. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_DemiHuman,15;');
  1071. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Angel,15;');
  1072. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddRace,RC_Dragon,15;');
  1073. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`job_all`,`job_novice`,`job_supernovice`,`class_upper`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2763,'Skul_Ring_C','Neo Skull Ring','Armor',true,false,false,true,true,true,1,95,'bonus bAtkRate,5;\nbonus bMatkrate,5;\nbonus bMaxHPrate,5;\nbonus2 bSkillHeal,"AL_HEAL",5;\nskill "MG_SIGHT",1;');
  1074. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2764,'Small_Fishing_Rod','Small Fishing Rod','Armor',10,250,true,true,1);
  1075. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2765,'Novice_Figure','Novice Figure','Armor',100,true,true,1,'bonus bMaxHP,70;\nif (BaseJob == Job_Novice || BaseJob == Job_SuperNovice)\n bonus bMaxHP,30;');
  1076. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2766,'Swordman_Figure','Swordman Figure','Armor',true,true,1,'bonus bVit,1;\nif (Class == Job_Swordman)\n bonus bDef,2;');
  1077. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2767,'Acolyte_Figure','Acolyte Figure','Armor',true,true,1,'bonus bInt,1;\nif (Class == Job_Acolyte)\n bonus bMaxSP,50;');
  1078. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2768,'Mage_Figure','Mage Figure','Armor',true,true,1,'bonus bInt,1;\nif (Class == Job_Mage)\n bonus bSPrecovRate,5;');
  1079. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2769,'Archer_Figure','Archer Figure','Armor',true,true,1,'bonus bDex,1;\nif (Class == Job_Archer)\n bonus bBaseAtk,10;');
  1080. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2770,'Thief_Figure','Thief Figure','Armor',true,true,1,'bonus bAgi,1;\nif (Class == Job_Thief)\n bonus bAspdRate,3;');
  1081. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2771,'Merchant_Figure','Merchant Figure','Armor',true,true,1,'bonus bStr,1;\nif (Class == Job_Merchant)\n bonus bCritical,5;');
  1082. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,81,100,true,true,true,true,true,true,true,'bonus bMaxHP,300;\nbonus2 bSubEle,Ele_Water,10;\nbonus2 bSubEle,Ele_Wind,10;\nbonus2 bSubEle,Ele_Earth,10;\nbonus2 bSubEle,Ele_Fire,10;\nbonus bAspdRate,5;\nbonus bCastrate,-3;\nbonus bHealPower,5;');
  1083. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,61,100,true,true,true,true,true,true,true,'bonus bAllStats,2;');
  1084. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bAllStats,1;');
  1085. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`) VALUES (2775,'Lure','Lure','Armor',20,100,true,true,1);
  1086. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_script`,`unequip_script`) VALUES (2776,'Cool_Towel','Adventurer\'s Trusty Towel','Armor',20,100,true,true,1,'sc_start SC_SUMMER,INFINITE_TICK,0;','sc_end SC_SUMMER;');
  1087. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (2777,'Shaman_Ring','Shaman Ring','Armor',20,100,1,true,true,1,30,100,true,true,'bonus bUseSPrate,-5;');
  1088. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (2778,'Shaman_Earing','Shaman Earrings','Armor',20,100,true,true,1,30,100,true,true,'bonus bInt,2;');
  1089. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (2779,'Dark_Knight_Belt','Dark Knight Belt','Armor',20,500,1,true,true,1,30,100,true,true,'bonus bStr,2;\nbonus bAgi,1;');
  1090. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (2780,'Dark_Knight_Glove','Dark Knight Glove','Armor',20,500,1,true,true,1,80,100,true,true,'autobonus "{ bonus bAspdRate,2; }",10,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";');
  1091. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,'bonus bAllStats,1;\nbonus bMdef,1;');
  1092. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bMaxHP,50;\nbonus bMaxSP,20;');
  1093. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2783,'Eyes_Stone_Ring','Eye Stone Ring','Armor',20,100,1,true,true,1,70,'bonus bCritical,2;\nbonus bMaxSP,25;');
  1094. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2784,'Oh_Holy_Night','Christmas Musicbox','Armor',20,100,true,true,1,1,'skill "ALL_WEWISH",1;');
  1095. 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`,`armor_level`,`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,1,90,100,true,true,true,true,true,true,true,'bonus bDex,2;\nbonus bMatkRate,3;');
  1096. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2786,'Spiritual_Ring_M','Spiritual Ring','Armor',20,100,true,true,1,'bonus bInt,2;\nbonus bDex,1;');
  1097. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2787,'Waterdrop_Brooch','Waterdrop Brooch','Armor',20,200,1,true,false,false,true,true,true,1,75,'bonus2 bSubEle,Ele_Water,5;\nbonus bMaxHP,80;\nbonus bMdef,2;');
  1098. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2788,'Bradium_Earing','Bradium Earring','Armor',20,200,1,true,false,false,true,true,true,1,60,'bonus bMatkRate,2;\nbonus bInt,1;\nbonus bDex,1;');
  1099. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2789,'Bradium_Ring','Bradium Ring','Armor',20,200,1,true,false,false,true,true,true,1,60,'bonus2 bAddClass,Class_All,2;\nbonus bStr,1;\nbonus bVit,1;');
  1100. 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`,`armor_level`,`equip_level_min`,`script`) VALUES (2790,'Bradium_Brooch','Bradium Brooch','Armor',20,200,1,true,false,false,true,true,true,1,60,'bonus bFlee,4;\nbonus bAspdRate,2;\nbonus bAgi,1;');
  1101. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2791,'Just_Got_Fish','Fresh Fish','Armor',20,500,1,true,true,1,1,'bonus bHit,3;');
  1102. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`slots`,`job_crusader`,`job_knight`,`job_swordman`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,99,100,true,true,true,true,true,true,true,true,'bonus bStr,2;');
  1103. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`job_all`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,99,100,true,true,true,true,true,true,true,'bonus bAllStats,6;\nif (JobLevel <30) {\n bonus bAllStats,(JobLevel/5);\n}');
  1104. 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`,`armor_level`,`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,1,99,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,2047,10;\nbonus2 bAddDefMonster,2048,-10;\nbonus3 bAddMonsterIdDropItem,6152,2047,70;');
  1105. 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`,`armor_level`,`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,1,99,100,true,true,true,true,true,true,true,true,'bonus2 bAddDamageClass,2049,10;\nbonus2 bAddDefMonster,2050,-10;\nbonus3 bAddMonsterIdDropItem,6151,2049,70;');
  1106. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_monk`,`job_priest`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,99,100,true,true,true,true,true,true,true,'if (strcharinfo(3) == "job3_arch02") {\n bonus2 bAddDefMonster,1761,50;\n bonus2 bAddDefMonster,1762,50;\n}');
  1107. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`script`) VALUES (2799,'Kuirpenring','Kuirpenring','Armor',100,1,true,true,1,'bonus bMdef,1;');
  1108. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2800,'Accelerator','Accelerator','Armor',100000,100,1,true,true,true,1,99,'bonus bAgi,2;');
  1109. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2801,'Hovering_Booster','Hovering Booster','Armor',100000,2000,1,true,true,true,1,99,'bonus bAgi,1;');
  1110. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`) VALUES (2802,'Suicidal_Device','Suicidal Device','Armor',500000,1000,1,true,true,true,1,99);
  1111. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2803,'Shape_Shifter','Shape Shifter','Armor',100000,500,1,true,true,true,1,99,'bonus bInt,3;');
  1112. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2804,'Cooling_Device','Cooling Device','Armor',100000,2500,1,true,true,true,1,99,'bonus bDex,1;');
  1113. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2805,'Mag_Field_Generator','Magnetic Field Generator','Armor',100000,6000,1,true,true,true,1,99,'bonus bDex,1;');
  1114. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2806,'Barrier_Builder','Barrier Builder','Armor',150000,8000,3,1,true,true,true,1,99,'bonus bDex,1;');
  1115. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`) VALUES (2807,'Repair_Kit','Repair Kit','Armor',200000,400,1,true,true,true,1,99);
  1116. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2808,'Camouflage_Generator','Camouflague Generator','Armor',250000,1000,1,true,true,true,1,99,'bonus bAgi,3;');
  1117. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2809,'High_Quality_Cooler','High Quality Cooler','Armor',100000,2500,1,true,true,true,1,99,'bonus bDex,1;');
  1118. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_blacksmith`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (2810,'Special_Cooler','Special Cooler','Armor',100000,2500,1,true,true,true,1,99,'bonus bDex,1;');
  1119. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100;\nskill "SM_BASH",1;\nskill "SM_PROVOKE",1;\nskill "SM_MAGNUM",1;');
  1120. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100;\nskill "TF_DOUBLE",3;\nbonus bDoubleRate,15;\nskill "TF_STEAL",1;\nskill "TF_HIDING",1;\nskill "TF_POISON",1;');
  1121. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100;\nskill "AL_HEAL",1;\nskill "AL_INCAGI",1;\nskill "AL_BLESSING",1;');
  1122. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100;\nskill "AC_OWL",1;\nskill "AC_CONCENTRATION",1;');
  1123. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100;\nskill "MC_DISCOUNT",1;\nskill "MC_OVERCHARGE",10;\nskill "MC_IDENTIFY",1;\nskill "MC_MAMMONITE",1;');
  1124. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_novice`,`job_supernovice`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,'bonus bMaxSP,100;\nskill "MG_SRECOVERY",1;\nskill "MG_COLDBOLT",1;\nskill "MG_FIREWALL",1;\nskill "MG_FIREBOLT",1;');
  1125. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5001,'Headset','Headset','Armor',20,200,3,true,false,false,true,1,1,true,87,'bonus2 bResEff,Eff_Curse,1000;');
  1126. 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`,`armor_level`,`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,1,60,true,88,'bonus bInt,2;\nbonus bLuk,1;\nbonus bMdef,3;');
  1127. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5003,'Joker_Jester','Joker Jester','Armor',20,100,1,true,false,false,true,1,true,89,'bonus bLuk,2;\nbonus bMdef,5;');
  1128. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5004,'Oxygen_Mask','Oxygen Mask','Armor',20,200,true,false,false,true,1,90,'bonus2 bResEff,Eff_Poison,2000;');
  1129. 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`,`armor_level`,`view`,`script`) VALUES (5005,'Gas_Mask','Gas Mask','Armor',20,100,1,true,false,false,true,true,1,91,'bonus2 bResEff,Eff_Poison,3000;');
  1130. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`view`) VALUES (5006,'Machoman_Glasses','Machoman\'s Glasses','Armor',36000,100,1,true,false,false,true,1,92);
  1131. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5007,'Loard_Circlet','Grand Circlet','Armor',20,200,3,true,false,false,true,1,55,true,93,'bonus bStr,1;\nbonus bInt,1;\nbonus bLuk,1;\nbonus bMdef,4;');
  1132. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`) VALUES (5008,'Puppy_Love','Puppy Love','Armor',20,100,1,true,false,false,true,1,94);
  1133. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5009,'Safety_Helmet','Safety Helmet','Armor',20,500,3,true,false,false,true,1,true,95,'bonus bMdef,3;\nbonus bUnbreakableHelm;');
  1134. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5010,'Indian_Hair_Piece','Indian Fillet','Armor',20,100,3,true,1,true,96);
  1135. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5011,'Antenna','Aerial','Armor',20,100,3,true,1,true,97);
  1136. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5012,'Ph.D_Hat','Ph.D Hat','Armor',20,200,3,true,false,false,true,1,true,98);
  1137. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5013,'Horn_Of_Lord_Kaho','Lord Kaho\'s Horn','Armor',20,100,5,true,1,true,99,'bonus bMdef,10;\nbonus bStr,5;\nbonus bAgi,10;\nbonus bVit,10;\nbonus bInt,5;\nbonus bLuk,20;');
  1138. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`) VALUES (5014,'Fin_Helm','Fin Helm','Armor',20,300,2,true,true,true,true,1,65,100);
  1139. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`) VALUES (5015,'Egg_Shell','Egg Shell','Armor',20,200,3,true,1,101);
  1140. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5016,'Boy\'s_Cap','Boy\'s Cap','Armor',20,100,2,true,false,false,true,1,true,102);
  1141. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5017,'Bone_Helm','Bone Helm','Armor',20,800,7,true,true,true,true,true,true,true,1,70,true,103,'bonus2 bSubEle,Ele_Dark,-15;');
  1142. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5018,'Feather_Bonnet','Feather Bonnet','Armor',20,300,4,true,true,true,true,1,true,104,'bonus bAgi,1;');
  1143. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5019,'Corsair','Corsair','Armor',20,500,5,true,false,false,true,1,true,105,'bonus bVit,1;');
  1144. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5020,'Kafra_Band','Kafra Band','Armor',20,500,3,true,1,true,106,'bonus bMdef,3;');
  1145. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5021,'Bankruptcy_Of_Heart','Grief for Greed','Armor',20,1200,4,true,true,true,true,1,38,true,107,'bonus bInt,1;\nbonus bDex,1;');
  1146. 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`,`armor_level`,`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,1,true,138,'bonus bStr,3;\nbonus bInt,2;');
  1147. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_alchemist`,`job_blacksmith`,`job_merchant`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5023,'Hat_Of_Bundle','Parcel Hat','Armor',20,1000,true,true,true,true,1,true,108);
  1148. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5024,'Hat_Of_Cake','Cake Hat','Armor',20,1000,1,true,1,true,109);
  1149. 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`,`armor_level`,`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,1,74,true,110,'bonus bAgi,1;\nbonus bLuk,1;\nbonus bMdef,3;');
  1150. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5026,'Hat_Of_Cook','Chef Hat','Armor',20,300,1,true,false,false,true,1,50,true,111,'bonus bDex,1;');
  1151. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (5027,'Wizardry_Hat','Mage Hat','Armor',20,300,1,true,true,true,true,true,1,true,112,'bonus bInt,2;\nbonus bMaxSP,150;');
  1152. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5028,'Candle','Candle','Armor',20,150,true,1,true,113);
  1153. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5029,'Spore_Hat','Spore Hat','Armor',20,900,3,true,false,false,true,1,20,true,114);
  1154. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5030,'Panda_Cap','Panda Hat','Armor',20,800,3,true,false,false,true,1,40,true,115);
  1155. 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`,`armor_level`,`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,1,55,true,116,'bonus bDex,2;');
  1156. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5032,'Picnic_Hat','Sunday Hat','Armor',20,800,1,true,false,false,true,1,true,117);
  1157. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5033,'Smokie_Hat','Raccoon Hat','Armor',20,900,3,true,false,false,true,1,50,true,118);
  1158. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5034,'Light_Bulb_Band','Bulb Band','Armor',20,500,true,false,false,true,1,true,119);
  1159. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5035,'Poring_Hat','Poring Hat','Armor',20,700,2,true,false,false,true,1,38,true,120);
  1160. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5036,'Cross_Band','Cross Hat','Armor',20,250,1,true,false,false,true,1,10,true,121);
  1161. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`) VALUES (5037,'Fruit_Shell','Nut Shell','Armor',20,150,4,true,1,5,122);
  1162. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5038,'Deviruchi_Cap','Deviruchi Hat','Armor',20,800,2,true,false,false,true,1,64,true,123,'bonus bStr,1;\nbonus bInt,1;');
  1163. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`) VALUES (5039,'Mottled_Egg_Shell','Rainbow Eggshell','Armor',20,400,4,true,1,19,124);
  1164. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (5040,'Blush','Blush','Armor',20,100,true,1,125);
  1165. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5041,'Heart_Hair_Pin','Heart Hairpin','Armor',20,100,true,1,true,126);
  1166. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5042,'Hair_Protector','Bao Bao','Armor',20,150,true,false,false,true,1,14,true,127);
  1167. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`) VALUES (5043,'Opera_Ghost_Mask','Opera Phantom Mask','Armor',20,200,1,true,false,false,true,1,20,128);
  1168. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5044,'Devil\'s_Wing','Evil Wing Ears','Armor',20,350,2,true,1,45,true,129,'bonus bVit,1;');
  1169. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5045,'Magician_Hat','Magician Hat','Armor',20,500,3,true,true,true,true,true,true,true,true,1,50,true,130,'bonus bDex,1;\nbonus bAgi,1;\nbonus bMaxSP,50;');
  1170. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`view`) VALUES (5046,'Bongun_Hat','Bongun Hat','Armor',20,300,5,true,true,true,1,139);
  1171. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5047,'Fashion_Sunglass','Fashionable Glasses','Armor',20,100,true,false,false,true,1,true,131);
  1172. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5048,'First_Moon_Hair_Pin','Cresent Hairpin','Armor',20,100,true,1,true,132);
  1173. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`) VALUES (5049,'Stripe_Band','Striped Hairband','Armor',20,150,1,true,1,133);
  1174. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`) VALUES (5050,'Mystery_Fruit_Shell','Wonder Nutshell','Armor',20,300,5,true,1,30,134);
  1175. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`) VALUES (5051,'Kitty_Bell','Pussy Cat Bell','Armor',20,100,true,1,135);
  1176. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5052,'Blue_Hair_Band','Blue Hairband','Armor',20,150,1,true,1,true,136);
  1177. 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`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5053,'Spinx_Helm','Sphinx Hat','Armor',20,3000,5,true,true,true,true,true,1,65,137,'bonus bStr,2;');
  1178. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_priest`,`location_head_low`,`armor_level`,`equip_level_min`,`view`) VALUES (5054,'Assassin_Mask','Assassin Mask','Armor',20,100,true,true,true,1,70,180);
  1179. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`) VALUES (5055,'Novice_Egg_Cap','Novice False Eggshell','Armor',1,1,3,true,true,true,1,101);
  1180. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`view`) VALUES (5056,'Love_Berry','Fruit of Love','Armor',1,100,true,1,140);
  1181. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5057,'Ear_Of_Black_Cat','Black Cat Ears','Armor',16000,200,2,true,1,45,true,141);
  1182. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5058,'Drooping_Kitty','Drooping Cat','Armor',250000,500,1,true,false,false,true,1,true,142,'bonus bMdef,15;\nbonus2 bResEff,Eff_Curse,3000;');
  1183. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5059,'Brown_Bear_Cap','Teddybear Hat','Armor',20,800,3,true,1,50,true,143);
  1184. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5060,'Party_Hat','Party Hat','Armor',20,300,3,true,1,true,144,'bonus bLuk,1;');
  1185. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5061,'Flower_Hairpin','Flower Hairpin','Armor',20,100,1,true,1,true,145);
  1186. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5062,'Straw_Hat','Straw Hat','Armor',20,200,3,true,1,50,true,146,'bonus bAgi,1;');
  1187. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5063,'Plaster','Giant Band Aid','Armor',20,100,1,true,false,false,true,1,true,147);
  1188. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5064,'Leaf_Headgear','Smokie Leaf','Armor',20,100,1,true,1,true,148);
  1189. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5065,'Fish_On_Head','Blue Fish','Armor',20,500,2,true,1,50,true,149,'bonus2 bAddRace,RC_Fish,10;');
  1190. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5066,'Horn_Of_Succubus','Succubus Horn','Armor',20,800,4,true,false,false,true,1,70,true,150,'bonus bInt,1;\nbonus bMdef,10;');
  1191. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5067,'Sombrero','Sombrero','Armor',20,350,4,true,false,false,true,1,true,151,'bonus bAgi,1;');
  1192. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5068,'Ear_Of_Devil\'s_Wing','Evil Wing Ears','Armor',20,100,1,true,1,70,152,'bonus bStr,1;');
  1193. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5069,'Mask_Of_Fox','Kitsune Mask','Armor',20,300,1,true,false,false,true,1,true,153,'bonus bAgi,1;\nbonus bLuk,1;');
  1194. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5070,'Headband_Of_Power','Hot-blooded Headband','Armor',20,100,1,true,false,false,true,1,true,154,'bonus bStr,2;');
  1195. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5071,'Indian_Headband','Indian Headband','Armor',20,200,1,true,false,false,true,1,true,155,'bonus bDex,1;');
  1196. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5072,'Inccubus_Horn','Incubus Horn','Armor',20,800,4,true,false,false,true,1,70,true,156,'bonus bAgi,1;\nbonus bMdef,10;');
  1197. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5073,'Cap_Of_Concentration','Model Training Hat','Armor',20,700,2,true,false,false,true,1,true,157,'bonus bDex,2;');
  1198. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5074,'Ear_Of_Angel\'s_Wing','Angel Wing Ears','Armor',20,100,1,true,1,70,158,'bonus bStr,1;');
  1199. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5075,'Cowboy_Hat','Cowboy Hat','Armor',20,500,4,true,1,true,159);
  1200. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5076,'Fur_Hat','Beanie','Armor',20,350,2,true,1,true,160,'bonus bLuk,1;');
  1201. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5077,'Tulip_Hairpin','Tulip Hairpin','Armor',20,100,1,true,1,true,161);
  1202. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5078,'Sea_Otter_Cap','Sea-Otter Hat','Armor',20,800,3,true,1,50,true,162,'bonus bVit,1;');
  1203. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5079,'Crossed_Hair_Band','X Hairpin','Armor',20,100,1,true,1,true,163);
  1204. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5080,'Headgear_Of_Queen','Crown of Ancient Queen','Armor',20,400,4,true,1,45,true,164);
  1205. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5081,'Mistress_Crown','Crown of Mistress','Armor',20,100,true,false,false,true,1,75,true,165,'bonus bMaxSP,100;\nbonus bInt,2;\nbonus bUnbreakableHelm;');
  1206. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5082,'Mushroom_Band','Decorative Mushroom','Armor',20,100,2,true,1,true,166);
  1207. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5083,'Red_Tailed_Ribbon','Red Ribbon','Armor',20,200,1,true,1,45,true,167,'bonus bMdef,10;');
  1208. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5084,'Lazy_Raccoon','Lazy Smokie','Armor',20,500,1,true,false,false,true,1,true,168,'bonus2 bResEff,Eff_Sleep,2000;');
  1209. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`) VALUES (5085,'Pair_Of_Red_Ribbon','Small Ribbons','Armor',20,100,1,true,1,45,169);
  1210. 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`,`armor_level`,`view`,`script`) VALUES (5086,'Alarm_Mask','Alarm Mask','Armor',20,100,2,true,false,false,true,true,1,170,'bonus2 bResEff,Eff_Blind,5000;');
  1211. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`view`) VALUES (5087,'Goblin_Mask_01','Poker Face','Armor',20,100,1,true,true,1,171);
  1212. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`view`) VALUES (5088,'Goblin_Mask_02','Surprised Mask','Armor',20,100,1,true,true,1,172);
  1213. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`view`) VALUES (5089,'Goblin_Mask_03','Annoyed Mask','Armor',20,100,1,true,true,1,173);
  1214. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`view`) VALUES (5090,'Goblin_Mask_04','Goblin Leader Mask','Armor',20,100,2,true,true,1,174);
  1215. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5091,'Big_Golden_Bell','Decorative Golden Bell','Armor',20,200,2,true,false,false,true,true,1,35,true,175);
  1216. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_assassin`,`job_priest`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5092,'Blue_Coif','Coif','Armor',150000,300,5,true,true,true,true,1,65,true,176);
  1217. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5093,'Blue_Coif_','Coif','Armor',150000,300,5,1,true,true,true,true,1,65,true,177,'bonus bMaxSP,100;');
  1218. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5094,'Orc_Hero_Helm','Helmet of Orc Hero','Armor',500000,900,5,true,false,false,true,true,1,55,true,178,'bonus bStr,2;\nbonus bVit,1;');
  1219. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_assassin`,`job_priest`,`location_head_low`,`armor_level`,`equip_level_min`,`view`) VALUES (5096,'Assassin_Mask_','Assassin Mask','Armor',20,100,true,true,true,1,70,180);
  1220. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5097,'Cone_Hat_','Holiday Hat','Armor',400,true,1,true,144);
  1221. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,50,181,100,true,true,true,'bonus bStr,3;\nbonus bMaxHP,100;');
  1222. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5099,'Cat_Hat','Neko Mimi','Armor',20,300,1,true,1,true,182,'bonus bLuk,2;\nbonus bMdef,10;\nbonus2 bSubRace,RC_Brute,5;\nbonus2 bSubRace,RC_Player_Doram,5;');
  1223. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5100,'Sales_Signboard','Sales Banner','Armor',20,800,true,1,75,true,183,100,true,true,true,'bonus bStr,1;\nbonus bAgi,1;\nbonus bLuk,1;');
  1224. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (5101,'Takius_Blindfold','Takius\'s Blindfold','Armor',20,100,true,1,184);
  1225. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (5102,'Round_Eyes','Blank Eyes','Armor',20,100,true,1,185);
  1226. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,30,186,100,true,true,true,'bonus bAgi,2;\nbonus bCritical,5;');
  1227. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5104,'Dark_Blindfold','Dark Blinder','Armor',20,100,true,false,false,true,1,187,'bonus2 bResEff,Eff_Blind,10000;\nbonus2 bResEff,Eff_Stun,200;');
  1228. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5105,'Hat_Of_Cake_','2nd Anniversary Hat','Armor',20,1000,1,true,1,24,true,109,'bonus bDex,1;\nbonus bMaxSP,80;\nbonus3 bAddMonsterDropItem,7864,7,50;');
  1229. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5106,'Cone_Hat_INA','2nd Anniversary Hat','Armor',20,300,3,true,1,1,144,'bonus bLuk,1;');
  1230. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`) VALUES (5107,'Well_Baked_Toast','Crunch Toast','Armor',20,50,true,1,188);
  1231. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5108,'Detective_Hat','Renown Detective\'s Cap','Armor',20,350,3,1,true,1,true,189);
  1232. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5109,'Red_Bonnet','Red Bonnet','Armor',20,400,2,true,1,true,190);
  1233. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`) VALUES (5110,'Baby_Pacifier','Baby Pacifier','Armor',20,50,true,1,191);
  1234. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5111,'Galapago_Cap','Galapago Cap','Armor',20,500,2,true,1,55,true,192,'bonus2 bAddMonsterDropItem,605,100;');
  1235. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5112,'Super_Novice_Hat','Super Novice Hat','Armor',8500,400,4,true,true,true,1,40,true,193,'bonus bAllStats,1;');
  1236. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`) VALUES (5113,'Angry_Mouth','Angry Snarl','Armor',20,50,true,1,194);
  1237. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5114,'Fedora','Bucket Hat','Armor',6000,300,3,true,1,true,195);
  1238. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5115,'Winter_Hat','Winter Hat','Armor',20,500,3,true,1,true,196,'bonus2 bResEff,Eff_Freeze,1000;');
  1239. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5116,'Banana_Hat','Banana Hat','Armor',20,200,1,true,1,true,197,'bonus3 bAutoSpell,"SM_PROVOKE",3,30;');
  1240. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5117,'Mistic_Rose','Mystic Rose','Armor',20,100,true,1,true,198,'bonus2 bSubRace,RC_Plant,2;');
  1241. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5118,'Ear_Of_Puppy','Puppy Headband','Armor',20,100,2,true,1,true,199);
  1242. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5119,'Super_Novice_Hat_','Super Novice Hat','Armor',8500,400,4,1,true,true,true,1,40,true,193,'bonus bAllStats,1;');
  1243. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5120,'Fedora_','Bucket Hat','Armor',6000,300,3,1,true,1,true,195);
  1244. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5121,'Zherlthsh_Mask','Zealotus Mask','Armor',20,400,3,true,false,false,true,true,1,70,true,200,'bonus2 bAddRace,RC_DemiHuman,5;\nbonus2 bAddRace,RC_Player_Human,5;\nbonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;');
  1245. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5122,'Magni_Cap','Magni\'s Cap','Armor',30000,1000,5,true,false,false,true,1,65,true,250,'bonus bStr,2;');
  1246. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5123,'Ulle_Cap','Ulle\'s Cap','Armor',30000,500,3,1,true,false,false,true,1,65,true,254,'bonus bDex,2;\nbonus bAgi,1;');
  1247. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5124,'Fricca_Circlet','Fricca\'s Circlet','Armor',30000,300,3,true,false,false,true,1,65,true,251,'bonus bMdef,10;\nbonus bInt,2;\nbonus bMaxSP,50;');
  1248. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5125,'Kiss_Of_Angel','Angel\'s Kiss','Armor',10000,300,3,1,true,true,true,1,50,true,255,'bonus bSPrecovRate,5;');
  1249. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5126,'Morpheus\'s_Hood','Morpheus\'s Hood','Armor',30000,200,1,true,false,false,true,1,33,true,256,'bonus bInt,2;');
  1250. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5127,'Morrigane\'s_Helm','Morrigane\'s Helm','Armor',30000,500,4,true,false,false,true,1,61,true,257,'bonus bLuk,2;\nbonus bBaseAtk,3;');
  1251. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5128,'Goibne\'s_Helmet','Goibne\'s Helm','Armor',30000,500,5,true,false,false,true,1,54,true,258,'bonus bVit,3;\nbonus bMdef,3;');
  1252. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5129,'Bird_Nest','Bird Nest','Armor',20,400,1,true,1,50,201,'bonus bAgi,2;\nbonus2 bSubRace,RC_Brute,10;\nbonus2 bSubRace,RC_Player_Doram,10;');
  1253. 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`,`armor_level`,`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,1,75,true,202,'bonus2 bAddEffWhenHit,Eff_Silence,500;\nbonus bMdef,1;');
  1254. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5131,'Close_Helmet','Close Helmet','Armor',20,1200,8,true,true,true,true,true,true,1,75,true,203,'bonus bVit,3;\nbonus bMaxHPrate,3;');
  1255. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,204,100,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;');
  1256. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5133,'Sheep_Hat','Sheep Hat','Armor',20,150,1,true,true,true,true,1,205,100,true,true,true,'bonus bShortWeaponDamageReturn,5;');
  1257. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5134,'Pumpkin_Hat','Pumpkin-Head','Armor',20,200,2,true,1,true,206,'bonus2 bSubRace,RC_Demon,5;');
  1258. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5135,'Cyclops_Visor','Cyclop\'s Eye','Armor',200,true,false,false,true,1,75,207,'bonus bMaxSP,50;');
  1259. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5136,'Santa\'s_Hat_','Antonio\'s Santa Hat','Armor',20,100,2,true,1,true,20);
  1260. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5137,'Alice_Doll','Alice Doll','Armor',20,500,1,true,false,false,true,1,30,208,'bonus bStr,1;\nbonus2 bAddRace,RC_DemiHuman,10;\nbonus2 bAddRace,RC_Player_Human,10;\nbonus2 bAddEff2,Eff_Sleep,10;');
  1261. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5138,'Magic_Eyes','Magic Eyes','Armor',20,300,1,true,true,true,true,true,1,30,true,209,'bonus bMdef,5;\nbonus bCastrate,-10;\nbonus bUseSPrate,20;');
  1262. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5139,'Hibiscus','Hibiscus','Armor',20,200,true,1,10,210,'bonus bDex,1;\nbonus bInt,1;\nbonus bMdef,5;');
  1263. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5140,'Charming_Ribbon','Charming Ribbon','Armor',20,400,1,1,true,1,10,true,211,'bonus2 bSubRace,RC_Undead,5;\nbonus2 bSubRace,RC_Demon,5;');
  1264. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5141,'Marionette_Doll','Marionette Doll','Armor',20,400,1,true,false,false,true,1,30,true,212,'bonus bStr,1;');
  1265. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5142,'Crescent_Helm','Crescent Helm','Armor',20,3000,8,true,true,true,true,true,true,true,true,1,50,true,213,'bonus bVit,1;\nbonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;');
  1266. REPLACE INTO `item_db` (`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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5143,'Kabuki_Mask','Kabuki Mask','Armor',20,1000,5,1,true,false,false,true,true,true,1,30,true,214,'bonus2 bResEff,Eff_Silence,3000;');
  1267. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5144,'Gambler_Hat','Gambler Hat','Armor',20,200,2,true,1,true,16,'bonus bLuk,5;');
  1268. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5145,'Carnival_Joker_Jester','Carnival Joker Jester','Armor',10,100,true,1,true,89);
  1269. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5146,'Elephant_Hat','Elephant Hat','Armor',500,true,1,true,215,'bonus bVit,1;\nbonus2 bSubRace,RC_Brute,7;\nskill "WZ_WATERBALL",1;');
  1270. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5147,'Baseball_Cap','Baseball Cap','Armor',200,3,1,true,1,true,216);
  1271. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5148,'Phrygian_Cap','Phrygian Cap','Armor',500,true,1,true,217,'bonus bInt,2;');
  1272. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5149,'Silver_Tiara','Silver Tiara','Armor',100,true,1,true,218,'bonus bInt,2;');
  1273. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5150,'Joker_Jester_','Joker Jester','Armor',20,100,1,true,1,219,'bonus bSpeedRate,25;');
  1274. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`script`) VALUES (5151,'Headset_OST','Note Headphones','Armor',20,200,4,1,true,true,1,true,220,'bonus bMdef,3;\nbonus2 bResEff,Eff_Stun,1000;\nbonus2 bResEff,Eff_Freeze,1000;');
  1275. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5152,'Chinese_Crown','Chinese Crown','Armor',20,2000,2,true,true,1,1,true,221,'bonus2 bResEff,Eff_Stun,1000;\nbonus bInt,1;');
  1276. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5153,'Angeling_Hairpin','Angeling Hairpin','Armor',20,700,3,true,1,true,222,'bonus bFlee,5;');
  1277. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`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,1,12,100,true,true,true,true,true,true,true);
  1278. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`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,1,25,100,true,true,true,true,true,true,true,'bonus bBaseAtk,20;');
  1279. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`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,1,8,100,true,true,true,true,true,true,true,'bonus bMatkRate,1;');
  1280. 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`,`armor_level`,`refineable`,`view`) VALUES (5157,'Viking_Helm_','Orc Helm','Armor',20,500,5,1,true,true,true,true,true,true,true,true,true,true,1,true,86);
  1281. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_acolyte`,`job_monk`,`job_priest`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5158,'Holy_Bonnet_','Monk Hat','Armor',30000,100,5,1,true,true,true,true,1,true,35,'bonus bMdef,3;');
  1282. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5159,'Golden_Gear_','Golden Gear','Armor',20,900,5,1,true,false,false,true,1,40,true,30,'bonus bUnbreakableHelm;');
  1283. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (5160,'Magestic_Goat_','Majestic Goat','Armor',20,800,5,1,true,true,true,true,true,true,true,true,true,1,true,41,'bonus bStr,1;');
  1284. 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`,`armor_level`,`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,1,50,true,43);
  1285. 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`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5162,'Bone_Helm_','Bone Helm','Armor',20,800,7,1,true,true,true,true,true,true,true,1,70,true,103,'bonus2 bSubEle,Ele_Dark,-15;');
  1286. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5163,'Corsair_','Corsair','Armor',20,500,5,1,true,false,false,true,1,true,105,'bonus bVit,1;');
  1287. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5164,'Tiara_','Tiara','Armor',20,400,4,1,true,false,false,true,1,45,true,19,'bonus bInt,1;');
  1288. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5165,'Crown_','Crown','Armor',20,400,4,1,true,false,false,true,1,45,true,45,'bonus bInt,1;');
  1289. 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`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5166,'Spinx_Helm_','Sphinx Hat','Armor',20,3000,5,1,true,true,true,true,true,1,65,137,'bonus bStr,2;');
  1290. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5167,'Munak_Turban_','Munak Hat','Armor',20,300,5,1,true,true,true,1,51,'bonus2 bSubRace,RC_Undead,10;');
  1291. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`view`) VALUES (5168,'Bongun_Hat_','Bongun Hat','Armor',20,300,5,1,true,true,true,1,139);
  1292. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5169,'Bride_Mask','Bride Mask','Armor',30000,500,4,1,true,true,1,40,true,223,'if (BaseClass == Job_Taekwon) {\n bonus bLuk,2;\n bonus bCritical,5;\n}');
  1293. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5170,'Feather_Beret','Feather Beret','Armor',30000,600,1,true,false,false,true,1,true,224,'bonus bMdef,1;\nbonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;');
  1294. 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`,`armor_level`,`refineable`,`view`,`script`) VALUES (5171,'Valkyrie_Helm','Valkyrie Helm','Armor',100000,1000,5,1,true,false,false,true,true,1,true,225,'bonus bMdef,5;');
  1295. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5172,'Beret','Beret','Armor',30000,700,true,1,226,'bonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;');
  1296. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5173,'Satto_Hat','Magistrate Hat','Armor',30000,400,3,1,true,1,60,true,227,'if (BaseClass == Job_Taekwon) {\n bonus bAgi,1;\n bonus bHPrecovRate,3;\n}');
  1297. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5174,'Ayam','Ayam','Armor',30000,400,3,1,true,1,60,true,228,'if (BaseClass == Job_Taekwon) {\n bonus bInt,1;\n bonus bSPrecovRate,3;\n}');
  1298. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5175,'Censor_Bar','Censor Bar','Armor',30000,100,true,1,229,'bonus2 bResEff,Eff_Curse,500;\nbonus bMdef,1;\nbonus bHit,-5;');
  1299. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5176,'Hahoe_Mask','Hahoe Mask','Armor',30000,100,2,true,true,1,30,230,'if (BaseClass == Job_Taekwon) {\n bonus bLuk,1;\n bonus bFlee2,2;\n}');
  1300. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5177,'Guardian_Lion_Mask','Mythical Lion Mask','Armor',30000,500,5,1,true,true,1,40,true,231,'if (BaseClass == Job_Taekwon) {\n bonus bDex,2;\n bonus bBaseAtk,2*getrefine();\n bonus3 bAddEff,Eff_Stun,1000,ATF_SHORT;\n}');
  1301. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5178,'Candle_','Candle','Armor',20,150,true,1,true,113,'bonus bAllStats,1;');
  1302. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5179,'Gold_Tiara','Golden Tiara','Armor',100,true,1,true,232,'bonus bInt,2;');
  1303. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5180,'Phrygian_Cap_','France Holiday Hat','Armor',20,100,1,true,1,true,217,'bonus bVit,1;');
  1304. 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`,`armor_level`,`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,1,50,true,233,'bonus bStr,2;');
  1305. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5182,'Puppy_Hat','Puppy Hat','Armor',20,500,2,true,1,30,234,'bonus bAgi,1;\nbonus3 bAutoSpell,"PR_GLORIA",1,10+20*(readparam(bAgi)>=77);');
  1306. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5183,'Bird_Nest_Hat','Bird Nest Hat','Armor',20,500,2,true,1,10,true,235,'bonus bDex,1;\nbonus bAgi,1;\nbonus2 bResEff,Eff_Stun,1000;');
  1307. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5184,'Captain_Hat','Captain\'s Hat','Armor',20,500,4,true,false,false,true,1,30,true,236,'bonus2 bSubEle,Ele_Water,5;');
  1308. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5185,'Laurel_Wreath','Laurel Wreath','Armor',20,100,1,1,true,1,10,true,237,'bonus bLuk,3;\nbonus2 bResEff,Eff_Blind,500;\nbonus2 bResEff,Eff_Curse,500;');
  1309. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5186,'Geographer_Band','Geographer Band','Armor',20,500,1,true,1,30,238,'bonus bInt,1;\nbonus3 bAutoSpellWhenHit,"AL_HEAL",1,50;');
  1310. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5187,'Twin_Ribbon','Twin Ribbon','Armor',20,200,1,true,1,30,true,239,'bonus bMaxSP,30;\nbonus bMdef,3;\nbonus3 bAutoSpellWhenHit,"NPC_STONESKIN",6,10;\nbonus5 bAutoSpellWhenHit,"NPC_ANTIMAGIC",6,120,BF_MAGIC,0;');
  1311. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5188,'Minstrel_Hat','Wandering Minstrel Hat','Armor',20,500,2,true,1,50,true,240,'bonus bInt,1;\nbonus bDex,1;');
  1312. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5189,'Fallen_Leaves','Autumn Leaves','Armor',20,100,true,1,true,241,'bonus bMaxHP,40;\nbonus bMaxSP,40;');
  1313. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5190,'Baseball_Cap_','Independence Memorial Hat','Armor',20,20,3,1,true,1,true,216);
  1314. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5191,'Ribbon_Black','Black Ribbon','Armor',800,100,1,1,true,1,true,242,'bonus bInt,1;\nbonus bMdef,3;');
  1315. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5192,'Ribbon_Yellow','Yellow Ribbon','Armor',800,100,1,1,true,1,true,243,'bonus bMdef,3;');
  1316. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5193,'Ribbon_Green','Green Ribbon','Armor',800,100,1,1,true,1,true,244,'bonus bMdef,3;');
  1317. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5194,'Ribbon_Pink','Pink Ribbon','Armor',800,100,1,1,true,1,true,245,'bonus bMdef,3;');
  1318. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5195,'Ribbon_Red','Red Ribbon','Armor',800,100,1,1,true,1,true,246,'bonus bMdef,3;');
  1319. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5196,'Ribbon_Orange','Orange Ribbon','Armor',800,100,1,1,true,1,true,247,'bonus bMdef,3;');
  1320. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5197,'Ribbon_White','White Ribbon','Armor',800,100,1,1,true,1,true,248,'bonus bMdef,3;');
  1321. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5198,'Drooping_Bunny','Drooping Bunny','Armor',10,100,1,true,1,true,249,'bonus bDex,1;\nbonus bFlee,2;');
  1322. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5199,'Baseball_Cap_I','Baseball Cap','Armor',200,3,true,1,true,216);
  1323. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5200,'Coppola','Coppola','Armor',10,300,true,1,true,252);
  1324. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,144,100,true,true,true,true,true,true,true);
  1325. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5202,'Pumpkin_Hat_','Fantastic Pumpkin-Head','Armor',20,200,2,true,1,true,206,'bonus2 bSubRace,RC_Demon,5;');
  1326. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5203,'Tongue_Mask','Smiling Mask','Armor',20,200,2,true,true,1,253,'bonus bSpeedRate,25;');
  1327. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5204,'Event_Pierrot_Nose','Rudolph\'s Nose','Armor',20,100,true,1,49,'bonus2 bResEff,Eff_Blind,3000;\nbonus2 bAddMonsterDropItem,12130,30;');
  1328. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`script`) VALUES (5205,'Wreath','Emperor\'s Laurel Crown','Armor',20,1000,3,true,true,1,true,261,'bonus bAllStats,1;\nbonus bMdef,3;');
  1329. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`armor_level`,`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,1,259,100,true,true,true,'bonus2 bSubRace,RC_Plant,3;');
  1330. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5207,'Gold_Spirit_Chain','Angel Blessing','Armor',20,100,true,1,260,'bonus bLuk,1;\nbonus2 bSubEle,Ele_Holy,5;');
  1331. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5208,'Rideword_Hat','Rideword Hat','Armor',20,300,2,1,true,false,false,true,1,40,true,262,'bonus2 bHPDrainRate,50,8;\nbonus2 bSPDrainRate,10,4;\nbonus2 bHPLossRate,10,5000;');
  1332. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5209,'Yellow_Baseball_Cap','Love Dad Cap','Armor',20,300,2,true,1,true,263);
  1333. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,10,true,264,100,true,true,true,'bonus bCastrate,-3;\nbonus bAspdRate,3;\nbonus bInt,1;\nbonus bAgi,1;');
  1334. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5211,'Dress_Hat','Dress Hat','Armor',200,2,1,true,1,20,true,265,'bonus bMdef,7;\nbonus bStr,1;\nbonus bInt,1;\nbonus2 bAddClass,Class_All,2;\nbonus bMAtkRate,2;\nbonus bHealPower,5;\nif (getrefine()>=7) {\n bonus2 bAddClass,Class_All,1;\n bonus bMAtkRate,1;\n bonus bHealPower,1;\n}');
  1335. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5212,'Satellite_Hairband','Satellite Hairband','Armor',1000,3,1,true,1,30,true,266,'bonus bMaxHP,50;\nbonus bMaxSP,10;\nskill "AL_RUWACH",1;');
  1336. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5213,'Black_Bunny_Band','Sheila Hairnet','Armor',200,2,true,1,1,true,267,'bonus bAgi,2;\nbonus bMdef,3;');
  1337. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5214,'Moonlight_Flower_Hat','Moonlight Flower Hat','Armor',200,3,true,true,1,1,true,268,'bonus bDex,2;\nbonus3 bAutoSpell,"AL_INCAGI",1,50;');
  1338. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,true,38,100,true,true,true,'bonus bMdef,3;\nbonus bDex,1;\nbonus bInt,1;\nbonus2 bSubRace,RC_Demon,3;');
  1339. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,true,39,100,true,true,true,'bonus bStr,1;\nbonus bAgi,1;\nbonus bFlee,3;\nbonus2 bSubRace,RC_Angel,3;');
  1340. 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`,`armor_level`,`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,1,true,41,100,true,true,true,'bonus bStr,2;');
  1341. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5218,'Bunny_Band_','Evolved Bunny Band','Armor',20,100,2,true,1,true,15,100,true,true,true,'bonus bInt,2;');
  1342. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,true,142,100,true,true,true,'bonus bMdef,18;\nbonus bFlee,3;');
  1343. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_low`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5220,'Smoking_Pipe_','Evolved Pipe','Armor',20,100,true,false,false,true,1,55,100,true,true,true,'bonus bVit,1;\nbonus2 bSubRace,RC_Brute,5;\nbonus2 bSubRace,RC_Player_Doram,5;');
  1344. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`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,true,1,45,169,100,true,true,true,'bonus bFlee,5;');
  1345. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,50,true,149,100,true,true,true,'bonus bAgi,1;\nbonus bDex,1;');
  1346. 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`,`armor_level`,`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,1,35,true,175,100,true,true,true,'bonus bAgi,2;');
  1347. 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`,`armor_level`,`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,1,55,true,178,100,true,true,true,'bonus bStr,2;\nbonus bVit,1;\nbonus bMaxHPrate,10;');
  1348. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5225,'Marcher_Hat','Parade Hat','Armor',20,200,2,1,true,1,10,true,269,'bonus bMdef,2;\nbonus bStr,2;\nbonus4 bAutoSpellWhenHit,"AL_ANGELUS",5,30,0;\nbonus4 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,1,0;\nbonus2 bResEff,Eff_Stun,1000;\nif (BaseClass == Job_Acolyte)\n bonus4 bAutoSpellOnSkill,"AL_HEAL","PR_LEXAETERNA",1,1000;');
  1349. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5226,'Mini_Propeller_','Mini Propeller','Armor',20,200,2,true,1,true,270,100,true,true,true,'bonus bAgi,2;\nbonus bDex,1;\nbonus bFlee,10;\nbonus bCastrate,-getrefine();');
  1350. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,64,true,271,100,true,true,true,true,true,true,true,'bonus bStr,1;\nbonus bInt,1;');
  1351. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,64,true,272,100,true,true,true,true,true,true,true,'bonus bStr,1;\nbonus bInt,1;');
  1352. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,64,true,273,100,true,true,true,true,true,true,true,'bonus bStr,1;\nbonus bInt,1;');
  1353. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,true,274,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000;\nbonus bMdef,15;');
  1354. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,true,275,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000;\nbonus bMdef,15;');
  1355. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,true,276,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000;\nbonus bMdef,15;');
  1356. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,true,277,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000;\nbonus bMdef,15;');
  1357. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,true,278,100,true,true,true,true,true,true,true,'bonus2 bResEff,Eff_Curse,3000;\nbonus bMdef,15;');
  1358. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,279,100,true,true,true,true,true,true,true,'bonus bLuk,1;');
  1359. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,280,100,true,true,true,true,true,true,true,'bonus bLuk,1;');
  1360. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,281,100,true,true,true,true,true,true,true,'bonus bLuk,1;');
  1361. 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`,`armor_level`,`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,1,true,282,100,true,true,true,true,true,true,true,'bonus bInt,2;\nbonus bMaxSP,150;');
  1362. 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`,`armor_level`,`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,1,true,283,100,true,true,true,true,true,true,true,'bonus bInt,2;\nbonus bMaxSP,150;');
  1363. 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`,`armor_level`,`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,1,true,284,100,true,true,true,true,true,true,true,'bonus bInt,2;\nbonus bMaxSP,150;');
  1364. 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`,`armor_level`,`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,1,true,285,100,true,true,true,true,true,true,true,'bonus bInt,2;\nbonus bMaxSP,150;');
  1365. 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`,`armor_level`,`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,1,true,286,100,true,true,true,true,true,true,true,'bonus bInt,2;\nbonus bMaxSP,150;');
  1366. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5243,'Chullos','Shafka','Armor',20,800,2,1,true,true,1,true,287,100,true,true,true,'bonus2 bResEff,Eff_Freeze,1000;');
  1367. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5244,'Elven_Blindfold','Elven Blindfold','Armor',20,200,1,true,1,288,'bonus2 bResEff,Eff_Blind,10000;');
  1368. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5245,'Elven_Sunglasses','Elven Sunglasses','Armor',20,200,1,true,1,289,'bonus2 bResEff,Eff_Blind,500;');
  1369. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5246,'Angelic_Helm','Angelic Helm','Armor',20,700,3,true,1,true,290,'bonus bAgi,1;\nbonus bLuk,1;\nbonus bMdef,3;\nbonus2 bSubRace,RC_Demon,5;');
  1370. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5247,'Satanic_Helm','Satanic Helm','Armor',20,700,4,true,1,true,291,'bonus bAgi,1;\nbonus bLuk,1;\nbonus bMdef,3;\nbonus2 bSubRace,RC_Demon,5;');
  1371. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5248,'Robotic_Blindfold','Robotic Blindfold','Armor',20,200,1,true,1,292,'bonus2 bResEff,Eff_Blind,10000;');
  1372. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5249,'Human_Blindfold','Human Blindfold','Armor',20,200,1,true,1,293,'bonus2 bResEff,Eff_Blind,10000;');
  1373. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (5250,'Robotic_Ears','Robotic Ears','Armor',20,10,true,1,294);
  1374. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (5251,'Round_Ears','Round Ears','Armor',20,10,true,1,295);
  1375. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5252,'Drooping_Nine_Tail','Drooping Ninetail','Armor',20,300,1,true,1,20,true,296,'bonus bAgi,1;\nbonus bDex,1;\nbonus3 bAutoSpellWhenHit,"PR_GLORIA",1,30;');
  1376. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5253,'Lif_Doll_Hat','Lif Doll Hat','Armor',20,200,1,1,true,1,20,true,297,'bonus bInt,1;\nbonus bMdef,getrefine();\nbonus bDef,getrefine()*-1;');
  1377. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5254,'Deviling_Hat','Deviling Hat','Armor',20,500,1,1,true,1,20,true,298,'bonus bStr,1;\nbonus bCritical,3;\nbonus2 bSubRace,RC_Angel,-20;\nif (getrefine()>=6) {\n bonus bCritical,getrefine()-5;\n}');
  1378. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5255,'Triple_Poring_Hat','Triple Poring Hat','Armor',20,600,3,true,1,20,299,'bonus bLuk,3;\nbonus3 bAutoSpell,"BS_GREED",1,50;');
  1379. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,20,true,300,100,true,true,true,'bonus bInt,1;\nbonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;');
  1380. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,20,true,301,100,true,true,true,'bonus bMdef,2;\nbonus3 bAutoSpellWhenHit,"HP_ASSUMPTIO",1,10;');
  1381. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5258,'Afro_Wig','Afro Wig','Armor',20,100,1,true,true,1,10,true,302,'bonus3 bAutoSpellWhenHit,"NV_FIRSTAID",1,300;\nbonus2 bSubEle,Ele_Neutral,1;');
  1382. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5259,'Elephant_Hat_','Elephant Hat','Armor',20,500,3,true,1,true,215,'bonus bVit,1;\nbonus3 bAutoSpell,"WZ_WATERBALL",3,10;\nskill "AL_HOLYWATER",1;');
  1383. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5260,'Cookie_Hat','Cookie Hat','Armor',20,500,2,true,1,true,217,'bonus bAgi,1;\nbonus bFlee2,5;\nbonus bCritAtkRate,5;');
  1384. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5261,'Silver_Tiara_','Silver Tiara','Armor',20,500,2,true,1,true,218,'bonus bInt,2;\nif (BaseClass == Job_Mage)\n bonus bMatkRate,(JobLevel/20);\nif (BaseClass == Job_Acolyte)\n bonus bUseSPrate,-(JobLevel/10);\nif (BaseClass == Job_Archer)\n bonus bMaxSP,(JobLevel*2);');
  1385. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5262,'Gold_Tiara_','Golden Tiara','Armor',20,500,2,true,1,true,232,'bonus bStr,2;\nbonus bUnbreakableHelm;\nif (readparam(bDex)<56 && (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief))\n bonus bDex,JobLevel/7;');
  1386. 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`,`armor_level`,`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,1,20,true,303,100,true,true,true,'bonus2 bSubEle,Ele_Water,1;\nbonus2 bSubEle,Ele_Earth,1;\nbonus2 bSubEle,Ele_Fire,1;\nbonus2 bSubEle,Ele_Wind,1;\nbonus2 bAddEff,Eff_Curse,300;');
  1387. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5264,'Aussie_Flag_Hat','Australian Flag Hat','Armor',20,500,4,true,1,true,304,'bonus bAllStats,2;');
  1388. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,72,100,true,true,true,true,true,true,true,true,'bonus bDex,4;');
  1389. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`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,1,15,100,true,true,true,true,true,true,true,true,'bonus bMdef,5;\nbonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;');
  1390. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`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,1,67,100,true,true,true,true,true,true,true,true,'bonus bAgi,3;');
  1391. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,93,100,true,true,true,true,true,true,true,true,'bonus bStr,3;\nbonus bInt,3;\nbonus bLuk,3;\nbonus bMdef,4;');
  1392. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5269,'Flying_Angel_','Flapping Angel Wing','Armor',20,300,1,true,1,10,true,264,'bonus bInt,1;\nbonus bAgi,1;\nbonus bAspdRate,3;\nbonus bSpeedRate,25;');
  1393. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5270,'Fallen_Leaves_','Autumn Leaves','Armor',20,100,1,1,true,1,true,241,'bonus bFlee2,5;');
  1394. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`script`) VALUES (5271,'Chinese_Crown_','Phoenix Crown','Armor',20,500,4,1,true,true,1,true,221,'bonus bMdef,3;\nbonus2 bSubClass,Class_Boss,getrefine();');
  1395. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5272,'Tongue_Mask_','Tongue Mask','Armor',20,100,2,true,true,1,253,'bonus3 bAutoSpell,"SM_PROVOKE",5,50;');
  1396. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5273,'Happy_Wig','Happy Wig','Armor',20,100,1,true,true,1,true,305,'bonus bSpeedRate,25;\nbonus bDef,4;\nskill "TF_HIDING",1;','sc_end SC_HIDING;');
  1397. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5274,'Shiny_Wig','Shiny Wig','Armor',20,100,1,true,true,1,true,306,'bonus bSpeedRate,25;\nbonus bDef,4;\nskill "TF_HIDING",1;','sc_end SC_HIDING;');
  1398. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5275,'Marvelous_Wig','Marvelous Wig','Armor',20,100,1,true,true,1,true,307,'bonus bSpeedRate,25;\nbonus bDef,4;\nskill "TF_HIDING",1;','sc_end SC_HIDING;');
  1399. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`script`,`unequip_script`) VALUES (5276,'Fantastic_Wig','Fantastic Wig','Armor',20,100,1,true,true,1,true,308,'bonus bSpeedRate,25;\nbonus bDef,4;\nskill "TF_HIDING",1;','sc_end SC_HIDING;');
  1400. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,20,true,309,100,true,true,true,'bonus bLuk,2;\nbonus bVit,2;\nbonus bLongAtkDef,10;');
  1401. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,20,true,310,100,true,true,true,'bonus bLuk,2;\nbonus bVit,2;\nbonus bLongAtkDef,10;');
  1402. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5279,'Drooping_Kitty_C','Refined Drooping Cat','Armor',2,1,true,false,false,true,1,142,'bonus bMdef,15;\nbonus2 bResEff,Eff_Curse,3000;');
  1403. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5280,'Magestic_Goat_C','Baphomet Horns','Armor',2,5,true,1,41,'bonus bStr,1;');
  1404. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5281,'Deviruchi_Cap_C','Refined Deviruchi Hat','Armor',2,2,true,false,false,true,1,123,'bonus bStr,1;\nbonus bInt,1;');
  1405. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5282,'euRO_Baseball_Cap','Europe Baseball Cap','Armor',200,3,1,true,1,true,216);
  1406. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5283,'Chick_Hat','Chick Hat','Armor',20,100,1,true,1,10,311,100,true,true,true,'bonus bLuk,2;\nbonus bMaxHP,50;\nbonus bMaxSP,50;\nskill "TF_DOUBLE",2;\nbonus bDoubleRate,10;\nbonus2 bSubRace,RC_DemiHuman,3;\nbonus2 bSubRace,RC_Player_Human,3;');
  1407. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`armor_level`,`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,1,30,312,100,true,true,true,'bonus bDex,1;\nbonus bAgi,1;\nbonus bHPrecovRate,5;\nbonus bSPrecovRate,3;');
  1408. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,30,313,100,true,true,true,'bonus bAgi,2;');
  1409. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5286,'Pecopeco_Hairband','Pecopeco Hairband','Armor',20,3,true,1,70,314,100,true,true,true,'bonus bSpeedRate,25;\nbonus bAspdRate,-10;\nbonus bCastrate,25;');
  1410. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,30,315,100,true,true,true,'bonus bVit,1;');
  1411. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5288,'Red_Glasses','Red Glasses','Armor',20,1,true,1,316,100,true,true,true,'bonus bInt,1;');
  1412. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5289,'Vanilmirth_Hat','Vanilmirth Hat','Armor',20,100,true,1,30,317,100,true,true,true,'bonus bUnbreakableHelm;\nbonus3 bAutoSpell,"MG_FIREBOLT",1,10;\nbonus3 bAutoSpell,"MG_COLDBOLT",1,10;\nbonus3 bAutoSpell,"MG_LIGHTNINGBOLT",1,10;\nbonus bMdef,5;');
  1413. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5290,'Drooping_Bunny_','Drooping Bunny','Armor',20,100,1,true,1,true,249,'bonus bDex,1;\nbonus bFlee,2;');
  1414. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,30,true,318,100,true,true,true,'bonus4 bAutoSpell,"SA_DELUGE",2,10,0;\nbonus3 bAutoSpell,"WZ_WATERBALL",3,10;');
  1415. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,50,true,319,100,true,true,true,'bonus2 bSubRace,RC_Dragon,5;');
  1416. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5293,'Ramen_Hat','Ramen Hat','Armor',20,1,true,1,320,100,true,true,true,'bonus bDex,4;\nbonus4 bAutoSpellWhenHit,"AL_DECAGI",1,30,1;');
  1417. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5294,'Whisper_Mask','Whisper Mask','Armor',20,true,true,true,1,321,100,true,true,true,'bonus bAgi,3;\nbonus2 bSubEle,Ele_Ghost,-10;');
  1418. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,138,100,true,true,true,true,true,true,'bonus bMdef,4;');
  1419. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5296,'Drooping_Nine_Tail_','Drooping Nine Tail','Armor',20,300,1,1,true,1,true,296,'bonus bAgi,1;\nbonus bCritical,1;');
  1420. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5297,'Soulless_Wing_','Soul Wing','Armor',20,300,2,1,true,1,true,301,'bonus bAllStats,1;\nbonus2 bSPRegenRate,2,10000;');
  1421. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`script`) VALUES (5298,'Marvelous_Wig_','Dokebi\'s Wig','Armor',20,100,1,1,true,true,1,true,307,'bonus2 bSubEle,Ele_Neutral,5;\nbonus2 bSubEle,Ele_Fire,-5;\nbonus2 bSubEle,Ele_Water,-5;');
  1422. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5299,'Ati_Atihan_Hat_','Pagdayaw','Armor',20,100,1,1,true,true,true,1,303,'bonus3 bAutoSpell,"DC_SCREAM",1,50;');
  1423. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,45,true,322,100,true,true,true,'bonus bMaxHP,100;');
  1424. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5301,'Russian_Ribbon','Victory Hairband','Armor',100,true,1,true,323);
  1425. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5302,'Lotus_Flower_Hat','Flower Lily','Armor',100,1,true,1,30,true,324);
  1426. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5303,'Flower_Coronet','Flower Crown','Armor',20,300,1,true,1,true,325,'bonus bMdef,3;\nbonus bMaxHP,50;');
  1427. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,50,true,326,100,true,true,true,'bonus2 bResEff,Eff_Curse,700;\nbonus2 bResEff,Eff_Blind,10000;');
  1428. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`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,1,327,100,true,true,true,true,true,true,true,'bonus bBaseAtk,5;');
  1429. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,328,100,true,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;');
  1430. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,329,100,true,true,true,'bonus bMdef,3;\nbonus3 bAutoSpellWhenHit,"DC_WINKCHARM",1,50;');
  1431. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,330,100,true,true,true,'bonus bSpeedAddRate,25;');
  1432. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`refineable`,`view`,`script`) VALUES (5309,'Mahican','Wool Mask','Armor',20,200,1,true,true,true,1,true,331,'skill "RG_GRAFFITI",1;');
  1433. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,332,100,true,true,true,'bonus2 bSubEle,Ele_Dark,10;\nskill "MG_SIGHT",1;','sc_end SC_SIGHT;');
  1434. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5311,'Large_Hibiscus','Large Hisbiscus','Armor',20,100,1,1,true,1,true,333,100,true,true,true,'bonus bMdef,15;');
  1435. 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`,`armor_level`,`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,1,true,334,100,true,true,true,'bonus bStr,1;\nbonus2 bAddRace,RC_DemiHuman,5;\nbonus2 bAddRace,RC_Player_Human,5;');
  1436. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5313,'Diadem','Diadem','Armor',20,100,3,1,true,true,1,true,335,100,true,true,true,'bonus bInt,1;\nbonus bMatkRate,3;\nbonus bCastrate,-3;');
  1437. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,50,336,100,true,true,true,'bonus2 bAddRace,RC_DemiHuman,5;\nbonus2 bAddRace,RC_Player_Human,5;');
  1438. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5315,'Observer','Observer','Armor',20,100,1,true,1,35,337,100,true,true,true,'skill "WZ_ESTIMATION",1;');
  1439. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5316,'Umbrella_Hat','Umbrella Hat','Armor',20,100,2,true,1,50,true,338,'bonus2 bSubEle,Ele_Water,3;');
  1440. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5317,'Fisherman_Hat','Fisherman\'s Hat','Armor',20,100,2,true,1,50,true,339,'bonus3 bAutoSpell,"WZ_WATERBALL",3,50;');
  1441. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`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,1,true,340,100,true,true,true,true,true,true,'bonus bAllStats,3;');
  1442. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5319,'Hellomother_Hat','Hello Mother Hat','Armor',20,200,2,true,false,false,true,1,10,true,341,'bonus bLuk,3;');
  1443. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,true,261,100,true,true,true,true,true,true,true,'bonus bAllStats,2;\nbonus4 bAutoSpellWhenHit,"AL_HEAL",1,50,0;');
  1444. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5321,'Indonesian_Bandana','Bandana Merah Putih','Armor',20,500,2,true,1,true,342);
  1445. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,24,true,343,100,true,true,true,true,true,true,true,'bonus bMdef,2;\nbonus bFlee,5;');
  1446. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`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,1,165,100,true,true,true,true,true,true,true,'bonus bAllStats,2;');
  1447. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,10,true,344,100,true,true,true,'bonus bDex,3;\nbonus4 bAutoSpellWhenHit,"CR_GRANDCROSS",3,30,0;');
  1448. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5325,'Robo_Eye','Robo Eye','Armor',20,200,2,true,1,10,345,'bonus2 bAddClass,Class_All,2;\nbonus bMatkRate,2;\nbonus bDex,1;');
  1449. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5326,'Masquerade_C','Masquerade C','Armor',1,1,true,1,78,'bonus2 bAddRace,RC_DemiHuman,7;\nbonus2 bAddRace,RC_Player_Human,7;');
  1450. 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`,`armor_level`,`view`,`script`) VALUES (5327,'Orc_Hero_Helm_C','Refined Helmet of Orc Hero','Armor',1,10,true,false,false,true,true,1,178,'bonus bStr,5;\nbonus bVit,3;');
  1451. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5328,'Evil_Wing_Ears_C','Evil Wing Ears C','Armor',1,2,true,1,152,'bonus bStr,1;');
  1452. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5329,'Dark_Blindfold_C','Dark Blindfold C','Armor',1,1,true,1,187,'bonus2 bResEff,Eff_Blind,10000;\nbonus2 bResEff,Eff_Stun,500;');
  1453. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5330,'kRO_Drooping_Kitty_C','kRO Drooping Kitty C','Armor',1,6,true,false,false,true,1,142,'bonus bMdef,15;\nbonus2 bResEff,Eff_Curse,4000;\nbonus2 bResEff,Eff_Curse,1000;');
  1454. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5331,'Corsair_C','Corsair C','Armor',1,10,true,false,false,true,1,105,'bonus bVit,3;\nbonus bInt,3;');
  1455. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_mid`,`location_head_low`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5332,'Loki_Mask','Loki Mask','Armor',200,true,true,1,20,346,'bonus bFlee2,3;');
  1456. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,50,true,347,100,true,true,true,true,true,'bonus bMdef,5;\nbonus bCritical,5;\nbonus bFlee,5;\nskill "MG_LIGHTNINGBOLT",1;\nbonus4 bAutoSpellWhenHit,"MG_THUNDERSTORM",5,30,1;');
  1457. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5334,'Angeling_Wanna_Fly','Flapping Angeling','Armor',700,true,1,38,348,'bonus bLuk,2;\nbonus bMdef,2;');
  1458. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5335,'Jumping_Poring','Jumping Poring','Armor',300,2,true,1,349,'bonus bLuk,1;\nbonus bUnbreakableHelm;');
  1459. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (5336,'Guildsman_Recruiter','Guildsman Recruiter Hat','Armor',2,true,1,10,true,350,100,true,true,true);
  1460. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`) VALUES (5337,'Party_Recruiter_Hat','Party Recruiter Hat','Armor',2,true,1,10,true,351,100,true,true,true);
  1461. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`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,1,10,true,352,100,true,true,true,true,true,true,true,true);
  1462. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`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,1,10,true,353,100,true,true,true,true,true,true,true,true);
  1463. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5340,'Deprotai_Doll_Hat','Defolty Doll Hat','Armor',500,1,true,1,60,354,'bonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;\nbonus bStr,2;\nbonus3 bAutoSpellWhenHit,"AL_ANGELUS",10,20;');
  1464. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5341,'Claris_Doll_Hat','Glaris Doll Hat','Armor',500,1,true,1,60,355,'bonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;\nbonus bInt,2;\nbonus bMagicHPGainValue,50;');
  1465. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5342,'Sorin_Doll_Hat','Sorin Doll Hat','Armor',500,1,true,1,60,356,'bonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;\nbonus bDex,2;\nautobonus "{ bonus bBaseAtk,50; }",20,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";');
  1466. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5343,'Tayelin_Doll_Hat','Telling Doll Hat','Armor',500,1,true,1,60,357,'bonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;\nbonus bAgi,2;\nbonus2 bAddItemHealRate,504,10;\nbonus2 bAddItemHealRate,547,10;');
  1467. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5344,'Binit_Doll_Hat','Bennit Doll Hat','Armor',500,1,true,1,60,358,'bonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;\nbonus bVit,2;\nautobonus "{ bonus bAspdRate,5; }",20,30000,0,"{ specialeffect2 EF_HASTEUP; }";');
  1468. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5345,'Debril_Doll_Hat','W Doll Hat','Armor',500,1,true,1,60,359,'bonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;\nbonus bLuk,2;\nbonus2 bAddRace,RC_Undead,5;\nbonus2 bMagicAddRace,RC_Undead,5;\nbonus2 bSubRace,RC_Undead,5;');
  1469. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`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,1,10,true,360,100,true,true,true,true,true,true,true,true);
  1470. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5347,'Ph.D_Hat_','Ph.D Hat','Armor',20,200,3,1,true,false,false,true,1,true,98);
  1471. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5348,'Big_Sis\'_Ribbon_','Big Ribbon','Armor',15000,200,2,1,true,false,false,true,1,true,28,'bonus bMdef,3;');
  1472. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5349,'Boy\'s_Cap_','Boy\'s Cap','Armor',20,100,2,1,true,false,false,true,1,true,102);
  1473. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5350,'Pirate_Bandana_','Pirate Bandana','Armor',20,100,3,1,true,false,false,true,1,true,74,'bonus bStr,1;');
  1474. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5351,'Sunflower_','Sunflower','Armor',20,100,1,1,true,1,37,'bonus2 bSubRace,RC_Insect,10;');
  1475. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,38,true,361,100,true,true,true);
  1476. 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`,`armor_level`,`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,1,true,138,'bonus bStr,3;\nbonus bInt,2;');
  1477. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5354,'Muslim_Hat_M','Muslim Hat M','Armor',100,2,true,1,362,'bonus bCastrate,-5;');
  1478. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5355,'Muslim_Hat_F','Selendang','Armor',100,2,true,1,363,'bonus bCastrate,-5;');
  1479. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5356,'Pumpkin_Hat_H','Festival Pumpkin Hat','Armor',20,200,2,true,1,true,206,100,true,true,'bonus2 bSubRace,RC_Demon,5;\nbonus2 bAddRace,RC_Demon,5;');
  1480. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,365,100,true,true,true,true,true,true,true,'bonus bMdef,10;\nbonus bUnbreakableHelm;');
  1481. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`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,1,70,366,100,true,true,true,'bonus bAgi,1;\nbonus bMdef,2;\nbonus bUnbreakableHelm;');
  1482. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,60,true,367,100,true,true,true,'bonus bDex,1;\nbonus bLongAtkRate,7;\nbonus bMaxHP,100;');
  1483. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,45,true,368,100,true,true,true,'bonus bFlee,10;\nbonus bCritical,3;\nbonus bCritAtkRate,10;\nbonus bDefRate,-50;\nbonus bDef2Rate,-50;');
  1484. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5361,'Gang_Scarf','Gangster Scarf','Armor',20,100,true,1,60,369,100,true,true,true,'bonus bBaseAtk,5;\nif (BaseJob == Job_Rogue)\n skill "RG_GANGSTER",1;');
  1485. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5362,'Ninja_Scroll','Ninja Scroll','Armor',20,200,true,1,60,370,100,true,true,true,'bonus bMatkRate,1;');
  1486. 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`,`armor_level`,`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,1,70,true,371,'bonus2 bSubRace,RC_DemiHuman,-10;\nbonus2 bSubRace,RC_Player_Human,-10;\nbonus2 bSubClass,Class_Boss,10;');
  1487. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5364,'Dark_Snake_Lord_Hat','Evil Snake Lord Hat','Armor',20,500,2,1,true,1,60,true,372,'bonus bStr,1;\nbonus bInt,1;\nbonus bAgi,2;');
  1488. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5365,'Fried_Egg','Magnolia Hat','Armor',20,100,3,1,true,1,1,373,'bonus2 bResEff,Eff_Stun,500;\nskill "HT_FLASHER",1;');
  1489. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5366,'Hat_0f_King','Love Dad Bandana','Armor',20,200,3,true,1,true,374,'bonus bAllStats,5;');
  1490. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,10,375,100,true,true,true,'bonus bMdef,3;\nbonus2 bSubRace,RC_Demon,10;');
  1491. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,38,100,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,12280,300;');
  1492. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,39,100,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,12279,300;');
  1493. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5370,'Orchid_Hairband','Orchid Hairband','Armor',20,200,1,true,1,true,376,'bonus bInt,1;');
  1494. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5371,'Hat_Of_Judge','Judge Hat','Armor',20,300,2,true,true,1,true,377,100,true,true,true,'bonus bLuk,1;\nbonus bMaxSP,30;');
  1495. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5372,'Drooping_White_Kitty','Koneko Hat','Armor',20,500,1,true,1,true,378,100,true,true,true,'bonus bInt,1;\nbonus bDelayRate,-3;\nbonus bMatkRate,3;\nbonus bMaxSPrate,3;\nbonus bMdef,3;');
  1496. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,true,379,100,true,true,true,'bonus bDex,3;\nbonus bMdef,1;');
  1497. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5374,'L_Magestic_Goat','Gigantic Majestic Goat','Armor',20,800,5,true,1,true,380,100,true,true,true,'bonus2 bAddRace,RC_DemiHuman,12;\nbonus2 bAddRace,RC_Player_Human,12;\nbonus bBaseAtk,(JobLevel*2)/7;');
  1498. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,true,381,100,true,true,true,'bonus bStr,2;\nbonus3 bAutoSpellWhenHit,"BS_WEAPONPERFECT",3,10;');
  1499. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,382,100,true,true,true,'bonus bMaxSP,120;\nbonus2 bAddEff2,Eff_Curse,300;');
  1500. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5377,'Antique_Pipe','Gentleman\'s Pipe','Armor',20,100,true,1,383,100,true,true,true,'bonus2 bSubRace,RC_DemiHuman,2;\nbonus2 bSubRace,RC_Player_Human,2;');
  1501. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5378,'Rabbit_Ear_Hat','Bunny Top Hat','Armor',20,300,true,1,true,384,100,true,true,true,'bonus bAgi,3;\nbonus3 bAutoSpellWhenHit,"AL_INCAGI",5,10;');
  1502. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5379,'Balloon_Hat','Tam','Armor',800,3,1,true,1,50,true,385,'bonus bMdef,2;\nbonus bMatkRate,2+(getrefine()/2);');
  1503. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5380,'Fish_Head_Hat','Fish Head Hat','Armor',20,400,1,true,1,true,386,100,true,true,true,'bonus3 bAutoSpell,"SA_FROSTWEAPON",1,5;');
  1504. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5381,'Santa_Poring_Hat','Santa Poring Hat','Armor',20,100,2,1,true,1,387,100,true,true,true,'bonus bMdef,2;\nbonus2 bAddEle,Ele_Dark,3;\nbonus2 bSubEle,Ele_Dark,3;');
  1505. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5382,'Bell_Ribbon','Bell Ribbon','Armor',20,200,3,1,true,1,true,388,100,true,true,true,'bonus bVit,1;\nskill "AL_ANGELUS",1;');
  1506. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,50,true,389,100,true,true,true,'bonus bLuk,1;\nbonus2 bAddRace,RC_Brute,10;\nbonus2 bAddRace,RC_Player_Doram,10;\nbonus2 bAddRace,RC_DemiHuman,5;\nbonus2 bAddRace,RC_Player_Human,5;');
  1507. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5384,'Santa_Hat_1','Twin Pompom By JB','Armor',20,200,1,1,true,1,20,true,390,'bonus bLuk,3;\nskill "WZ_ESTIMATION",1;\nbonus3 bAutoSpell,"AL_INCAGI",1,500;');
  1508. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,20,true,391,100,true,true,true,true,true,'skill "TF_HIDING", 1;','sc_end SC_HIDING;');
  1509. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nomail`,`trade_noauction`,`script`) VALUES (5386,'Ayam_','Ayam','Armor',70,7,true,1,1,228,100,true,true,'bonus bMdef,7;\nbonus bFlee,7;\nbonus2 bAddMonsterDropItem,12198,200;');
  1510. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,30,true,392,100,true,true,true,'bonus bMdef,5;');
  1511. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,30,true,393,100,true,true,true,'skill "TF_DOUBLE",5;\nbonus bDoubleRate,25;');
  1512. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5389,'Angel_Spirit','Angel Spirit','Armor',20,200,true,1,30,394,100,true,true,true,'bonus bStr,2;\nbonus bHit,15;');
  1513. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5390,'Santa_Hat_2','Frozen Twin Pompom','Armor',20,100,2,true,1,true,395,'bonus2 bResEff, Eff_Freeze, 3000;');
  1514. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`location_head_low`,`armor_level`,`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,1,188,100,true,true,true,true,true,true,true,true,'bonus bMaxHP,100;\nbonus2 bAddMonsterDropItem,617,10;');
  1515. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5392,'Louyang_Cap','Luoyang NewYear Hat','Armor',20,300,3,1,true,1,true,396,'bonus bLuk,2;');
  1516. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5393,'Valentine_Hat','Love Valentine\'s Hat','Armor',20,200,2,true,1,397,'bonus bMaxSPrate, 7;\nbonus bMaxHPrate, 7;');
  1517. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true);
  1518. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,50,true,398,100,true,true,true,'bonus bMaxHP,100+(getrefine()*20);\nbonus bLuk,3;');
  1519. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5396,'Jasper_Crest','Jasper Crest','Armor',20,700,2,1,true,1,true,399,'bonus bDex,3;\nbonus bVit,1;');
  1520. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5397,'Scuba_Mask','Scuba Gear','Armor',20,100,true,1,400,100,true,true,true,'bonus2 bSubEle,Ele_Water, 10;\nbonus bUnbreakableHelm, 0;');
  1521. 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`,`armor_level`,`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,1,85,true,401,'bonus bStr,2;\nbonus bMdef,5;\nbonus2 bResEff,Eff_Stun,500;\nbonus2 bResEff,Eff_Bleeding,500;');
  1522. 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`,`armor_level`,`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,1,85,402,'bonus bVit,3;\nbonus3 bAutoSpellWhenHit,"DC_SCREAM",5,30;');
  1523. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5400,'Fox_Hat','Fox Hat','Armor',20,200,true,true,true,1,403,'bonus bLuk,1;');
  1524. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`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,1,70,404,100,true,true,true,'bonus bInt,1;\nbonus bMdef,2;\nbonus bUnbreakableHelm, 0;');
  1525. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5402,'Mischievous_Fairy','Mischievous Fairy','Armor',10,200,1,true,1,70,405,100,true,true,true,'bonus bUnbreakableHelm, 0;\nbonus bFlee2, 3;');
  1526. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`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,1,30,406,100,true,true,true,'bonus2 bAddMonsterDropItem,579,500;\nbonus2 bAddItemHealRate,579,25;');
  1527. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,45,true,407,100,true,true,true,'bonus4 bAutoSpellWhenHit,"AC_CONCENTRATION",2,7,0;');
  1528. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5405,'Filir_Hat','Filir Hat','Armor',10,200,true,1,80,408,100,true,true,true,'bonus bShortWeaponDamageReturn, 1;');
  1529. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,409,100,true,true,true,true,true,true,'bonus bMaxHP,80;\nbonus bMaxSP,10;');
  1530. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,410,100,true,true,true,true,true,true,'bonus bMaxSP,30;');
  1531. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5408,'Old_Bandanna','Old Bandana','Armor',5,true,1,6,'bonus bInt,2;\nbonus bMaxSP,50;\nbonus bCastrate,10;');
  1532. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5409,'New_Cowboy_Hat','Purple Cowboy Hat','Armor',20,500,4,1,true,1,true,411,'bonus bInt,2;\nbonus bVit,2;\nbonus bMaxSP,50;');
  1533. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5410,'Bread_Bag2','Brown Paperbag Hat','Armor',20,200,6,true,true,true,1,412,'bonus bMaxHP,100;\nbonus2 bResEff, Eff_Stun, 400;\nbonus2 bSubRace,RC_DemiHuman,4;\nbonus2 bSubRace,RC_Player_Human,4;');
  1534. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5411,'White_Snake_Hat','White Snake Hat','Armor',20,500,2,true,1,true,413,'bonus bDex,2;');
  1535. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5412,'Sweet_Candy','Sweet Candy','Armor',20,100,1,true,1,414,'bonus bUnbreakableHelm, 0;');
  1536. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5413,'Popcorn_Hat','Pop Corn Hat','Armor',20,300,2,true,1,415,'bonus2 bSubEle,Ele_Wind, 10;');
  1537. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5414,'Campfire_Hat','Camp Fire Hat','Armor',20,300,2,true,1,416,'bonus2 bSubEle,Ele_Fire,10;\nbonus4 bAutoSpellWhenHit,"MG_FIREBALL",5,100,1;');
  1538. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5415,'Poring_Cake_Cap','Poring Cake Hat','Armor',20,1000,5,true,1,40,true,417,'bonus bMdef,5;\nbonus bCritical,5;\nbonus bFlee,5;\nbonus bFlee2,5;\nbonus bAspdRate,5;\nbonus bCastrate,-5;\nbonus bDelayRate,-5;');
  1539. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5416,'Beer_Cap','Beer Hat','Armor',20,600,2,true,false,false,true,1,18,true,418,'bonus bFlee2,5;\nskill "SM_RECOVERY",3;\nskill "MG_SRECOVERY",3;');
  1540. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5417,'Crown_Parrot','Crown Parrots','Armor',20,200,1,1,true,1,419,'bonus bInt,1;\nbonus2 bResEff,Eff_Silence,10000;\nbonus3 bAutoSpell,"DC_SCREAM",1,50;');
  1541. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5418,'Soldier_Hat','Legionnaire Hat','Armor',20,400,4,1,true,1,true,420,'bonus bStr,1;\nbonus2 bAddClass,Class_All,3;\nbonus bUseSPrate,10;');
  1542. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5419,'Evolved_Leaf','Leaves Of Grass','Armor',20,100,true,1,57,'bonus bVit,1;\nbonus2 bSubRace,RC_Plant,5;');
  1543. 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`,`armor_level`,`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,1,70,421,100,true,true,true,'bonus bStr,1;\nbonus bInt,1;\nbonus bMdef,5;\nbonus2 bSubEle,Ele_Fire,10;\nbonus2 bSubEle,Ele_Water,-10;\nskill "MG_SIGHT",1;\nbonus3 bAutoSpellWhenHit,"WZ_METEOR",3,50;\nbonus3 bAutoSpell,"MG_FIREBOLT",3,50;','sc_end SC_SIGHT;');
  1544. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`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,1,70,422,100,true,true,true,'bonus bStr,1;\nbonus bMdef,3;\nbonus2 bSkillAtk,"MG_FIREBOLT",2;\nbonus2 bSkillAtk,"WZ_FIREPILLAR",2;\nbonus2 bSkillAtk,"WZ_METEOR",2;\nbonus2 bSkillAtk,"SM_BASH",2;\nbonus2 bSkillAtk,"SM_MAGNUM",2;\nbonus2 bSkillAtk,"KN_PIERCE",2;\nbonus2 bSubEle,Ele_Fire,5;\nbonus2 bSubEle,Ele_Water,-5;');
  1545. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5422,'Linguistic_Book_Cap','Linguistic Book Hat','Armor',20,70,true,1,true,423,'bonus bInt,1;\nbonus bMdef,2;');
  1546. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5423,'Lovecap_China','I Love China','Armor',20,250,5,true,1,424,100,true,true,true,'bonus bDex,3;\nbonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;');
  1547. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5424,'Fanta_Orange_Can','Fanta Orange Can Hat','Armor',20,100,2,1,true,1,true,425);
  1548. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5425,'Fanta_Grape_Can','Fanta Grape Can Hat','Armor',20,100,2,1,true,1,true,426);
  1549. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5426,'Karada_Meguri_Tea_Hat','Karada Meguricha Hat','Armor',20,100,2,1,true,1,true,427,'bonus bLuk,1;');
  1550. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5427,'Royal_Milk_Tea_Hat','Black Tea Kochakaden Hat','Armor',20,100,2,1,true,1,true,428,'bonus bAgi,1;');
  1551. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,true,429,100,true,true,true,true,true,true,true,'bonus2 bSubRace,RC_DemiHuman,12;\nbonus2 bSubRace,RC_Player_Human,12;');
  1552. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5429,'Bogy_Cap','Bogy Cap','Armor',20,100,2,1,true,1,true,430,100,true,true,true,'bonus bHPrecovRate, 5;\nbonus bSPrecovRate, 5;');
  1553. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5430,'Sacred_Torch_Coronet','Torch Cap','Armor',20,3,true,1,431,100,true,true,'bonus2 bSubEle,Ele_Fire,20;\nskill "MG_FIREBOLT",5;');
  1554. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5431,'Chicken_Hat','Chicken Hat','Armor',20,1000,1,true,1,30,true,432,'bonus3 bAutoSpell,"MC_LOUD",1,30;\nbonus bAspdRate,5;');
  1555. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5432,'Brazil_Baseball_Cap','bRO 4th Anniversary Hat','Armor',20,100,true,1,true,433,'if (gettime(DT_MONTH) == SEPTEMBER && gettime(DT_DAYOFMONTH)>=10 && gettime(DT_DAYOFMONTH)<=24)\n bonus bAllStats, 4;');
  1556. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5433,'Golden_Wreath','Golden Laurel','Armor',20,100,true,1,true,434);
  1557. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5435,'Coke_Hat','Red Minstrel Hat','Armor',20,100,1,1,true,1,40,true,436,'bonus bInt,1;\nbonus bMaxSP,80;\nbonus bMdef,3;\nif (getrefine()>5) {\n bonus bMdef,getrefine()-5;\n bonus bMaxSP,(getrefine()-5)*10;\n}');
  1558. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5436,'Bride\'s_Corolla','Bride\'s Corolla','Armor',20,200,1,true,1,true,437,'bonus bLuk,3;\nbonus bMdef,2;');
  1559. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5437,'Flower_Of_Fairy','Fairy Flower','Armor',20,200,1,1,true,1,true,438,'bonus bInt,1;\nbonus bMdef,1;\nbonus2 bSubRace,RC_Insect,5;');
  1560. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5438,'Fillet_Green','Cute Green Ribbon','Armor',500,100,1,true,false,false,true,1,439,'bonus bMaxSP,20;');
  1561. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5439,'Fillet_Red','Cute Red Ribbon','Armor',500,100,1,true,false,false,true,1,440,'bonus bMaxSP,20;');
  1562. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5440,'Fillet_Blue','Cute Blue Ribbon','Armor',500,100,1,true,false,false,true,1,441,'bonus bMaxSP,20;');
  1563. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5441,'Fillet_White','Cute White Ribbon','Armor',500,100,1,true,false,false,true,1,442,'bonus bMaxSP,20;');
  1564. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5442,'Necktie','Necktie','Armor',20,100,3,1,true,1,70,true,443,'bonus bVit,1;\nbonus bHit,-5;\nbonus bUseSPrate,5;');
  1565. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5443,'Status_Of_Baby_Angel','Statue Of Baby Angel','Armor',20,600,3,1,true,1,70,true,444,'bonus bMdef,2;\nbonus4 bAutoSpellWhenHit,"PR_STRECOVERY",1,20,0;');
  1566. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5444,'Hair_Brush','Hair Brush','Armor',20,100,true,1,true,445,'bonus bCritical,6;');
  1567. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`view`,`script`) VALUES (5445,'Candy_Cane_In_The_Mouth','Candy Cane In Mouth','Armor',20,100,true,1,446,'bonus bMaxSP,5;');
  1568. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5446,'Cat_Foot_Hairpin','Catfoot Hairpin','Armor',20,200,1,true,1,true,447,'bonus bFlee,5;\nbonus bFlee2,3;');
  1569. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5447,'Frog_Cap','Frog Hat','Armor',20,500,3,true,1,70,true,448,'bonus bMdef,1;\nbonus2 bAddRace,RC_Insect,12;\nbonus2 bMagicAddRace,RC_Insect,12;');
  1570. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`refineable`,`view`) VALUES (5448,'Solo_Play_Box1','Soloplay Box1','Armor',300,1,true,true,true,1,true,449);
  1571. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`refineable`,`view`) VALUES (5449,'Solo_Play_Box2','Soloplay Box2','Armor',300,1,true,true,true,1,true,450);
  1572. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,20,true,451,100,true,true,true,true,true,true,true);
  1573. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,452,100,true,true,true,true,true,true,true,'bonus bAspdRate,10;\nbonus bAllStats,3;\nbonus2 bAddRace,RC_DemiHuman,5;\nbonus2 bAddRace,RC_Player_Human,5;');
  1574. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,453,100,true,true,true,true,true,true,true,'bonus bAspdRate,7;\nbonus bAllStats,2;\nbonus2 bAddRace,RC_DemiHuman,3;\nbonus2 bAddRace,RC_Player_Human,3;');
  1575. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`armor_level`,`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,1,454,100,true,true,true,true,true,true,true,'bonus bAspdRate,5;\nbonus bAllStats,2;\nbonus2 bAddRace,RC_DemiHuman,1;\nbonus2 bAddRace,RC_Player_Human,1;');
  1576. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5454,'Dog_Cap_','Puppy Hat','Armor',20,500,3,1,true,1,true,234,'bonus bStr,1;\nbonus bInt,1;\nautobonus "{ bonus bCritical,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_ENHANCE; }";\nautobonus "{ bonus2 bIgnoreMdefClassRate,Class_Normal,100; bonus2 bIgnoreMdefClassRate,Class_Boss,100; }",10,3000,BF_MAGIC,"{ specialeffect2 EF_MAGICALATTHIT; }";');
  1577. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5455,'Geographer_Band_','Decorative Geographer','Armor',20,500,1,1,true,1,true,238,'bonus bInt,1;\nbonus3 bAutoSpell,"AL_HEAL",5,50;\nbonus3 bAutoSpellWhenHit,"AL_HEAL",5,30;');
  1578. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5456,'Vacation_Hat_','Summer Hat','Armor',20,200,1,true,1,true,315,'bonus bVit,5;\nbonus bHPrecovRate,20;\nbonus bSPrecovRate,15;');
  1579. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,455,100,true,true,true,'bonus bAgi,3;\nbonus bBaseAtk,5;\nbonus bMatkRate,5;\nif (getrefine()>4) {\n bonus bBaseAtk,getrefine()-4;\n bonus bMatkRate,getrefine()-4;\n}');
  1580. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5458,'Pinwheel_Cap','Pinwheel Hat','Armor',20,200,2,true,1,true,456,'bonus bMaxHPrate,5;\nbonus bMaxSPrate,5;');
  1581. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5459,'Drooping_Bunny_Chusuk','Drooping Bunny','Armor',100,1,true,1,true,249,'bonus bDex,1;\nbonus bFlee,2;');
  1582. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,60,true,457,100,true,true,true,true,true,true,true,'bonus bAllStats, 2;\nbonus bMaxHPrate, 3;');
  1583. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,50,true,458,100,true,true,true,true,true,true,true,'bonus bDex,3;\nbonus2 bSubEle,Ele_Ghost, 20;');
  1584. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`armor_level`,`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,1,90,459,100,true,true,true,true,true,'bonus bVit,1;\nbonus2 bAddRace,RC_DemiHuman,1;\nbonus2 bAddRace,RC_Player_Human,1;\nbonus2 bSubRace,RC_DemiHuman,1;\nbonus2 bSubRace,RC_Player_Human,1;');
  1585. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`armor_level`,`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,1,90,460,100,true,true,true,true,true,'bonus bInt,1;\nbonus bMdef,2;\nbonus bMatkRate,1;');
  1586. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`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,1,461,100,true,true,true,true,true,true,true,true,'bonus bInt,2;\nskill "PR_MAGNIFICAT", 3;');
  1587. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,30,true,473,100,true,true,true,'bonus bStr,2;\nbonus bMaxHPrate,-10;\nbonus2 bAddRace2,RC2_Orc,15;');
  1588. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5477,'Bro_Flag','Brazilian Flag Hat','Armor',20,100,1,1,true,1,30,true,474,'skill "SM_BASH", 1;');
  1589. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,475,100,true,true,true,true,true,'bonus bStr,2;\nbonus bMaxHP,300;');
  1590. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,30,true,476,100,true,true,'bonus bMdef,3;\nbonus bMaxHP,50;\nbonus2 bSubEle,Ele_Neutral,5;');
  1591. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5480,'Bizofnil_Wing_Deco','Bijofnil Wings','Armor',20,1000,3,true,1,30,true,477,100,true,true,'bonus bAllStats,2;\nbonus3 bAutoSpell,"PR_IMPOSITIO",3,3;');
  1592. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,478,100,true,true,'bonus bAspdRate,10;\nbonus bBaseAtk,-20;\nbonus bMatkRate,-10;');
  1593. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,80,true,479,100,true,true,'bonus bStr,3;');
  1594. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`equip_level_min`,`view`,`trade_override`,`trade_nodrop`,`trade_noguildstorage`,`script`) VALUES (5483,'Odin_Mask','Odin Mask','Armor',20,100,1,true,true,1,50,480,100,true,true,'bonus bHit,-10;\nbonus2 bAddRace,RC_DemiHuman,6;\nbonus2 bAddRace,RC_Player_Human,6;');
  1595. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5485,'Tiger_Face','Tiger Face','Armor',20,1000,3,true,true,true,1,60,true,483,'bonus2 bSubRace,RC_Brute,5;\nbonus2 bAddRace,RC_Brute,5;\nbonus2 bMagicAddRace,RC_Brute,5;\nbonus2 bSubRace,RC_Player_Doram,5;\nbonus2 bAddRace,RC_Player_Doram,5;\nbonus2 bMagicAddRace,RC_Player_Doram,5;');
  1596. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5486,'J_Anniversary_Hat','Anniversary Hat','Armor',20,300,3,true,1,true,395,'bonus bAllStats, 2;');
  1597. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5487,'J_Poringcake_Hat','Poring Cake Hat','Armor',20,500,1,true,1,true,417,'bonus bLuk,2;');
  1598. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5488,'J_Twin_Santahat','Twin Santa Hat','Armor',20,100,1,true,1,true,390,'bonus bLuk,1;\nbonus bMdef,1;');
  1599. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5489,'Love_Daddy','Love Daddy Hat','Armor',20,100,true,1,true,484,'bonus bDex,2;');
  1600. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`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,1,70,485,100,true,true,true,true,true,'bonus bMdef,5;\nbonus2 bSubClass,Class_Boss,10;\nbonus bHealpower2,10;\nbonus bAddItemHealRate,10;');
  1601. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,486,100,true,true,true,true,true,'bonus bStr,2;\nbonus2 bSubEle,Ele_Fire, 10;');
  1602. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,102,100,true,true,true,true,true,true,true,true,'bonus bMdef,3;\nbonus2 bAddRace,RC_DemiHuman,5;\nbonus2 bAddRace,RC_Player_Human,5;');
  1603. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,254,100,true,true,true,true,true,true,true,true,'bonus bDex,2;\nbonus bAgi,1;');
  1604. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_crusader`,`job_knight`,`job_swordman`,`location_head_top`,`location_head_low`,`armor_level`,`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,1,137,100,true,true,true,true,true,true,true,true,'bonus bStr,5;');
  1605. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,75,true,493,100,true,true,true,'bonus bInt,1;\nbonus bDex,1;\nbonus bMdef,3;\nbonus bFlee,5;');
  1606. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,50,494,100,true,true,true,true,true,'bonus bLuk,4;');
  1607. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,30,true,495,100,true,true,true,true,true,'bonus bStr,2;');
  1608. 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`,`armor_level`,`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,1,50,true,490,100,true,true,true,'bonus bVit,5;\nbonus bFlee,10;');
  1609. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5499,'Pizza_Hat','Pizza Hat','Armor',20,600,true,1,487,100,true,true,true,'skill "SM_PROVOKE", 1;');
  1610. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5500,'Icecream_Hat','Icecream Hat','Armor',300,6,true,1,30,true,488,100,true,true,true,'bonus bMdef,3;\nskill "MG_FROSTDIVER",3;');
  1611. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,10,496,100,true,true,true,true,true,'bonus2 bAddRace2,RC2_Ninja,5;\nbonus2 bSubRace2,RC2_Ninja,5;');
  1612. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,true,491,100,true,true,true,true,true,'bonus5 bAutoSpellWhenHit,"NPC_DARKSTRIKE",5,5,BF_WEAPON|BF_MAGIC,1;');
  1613. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5503,'Rabbit_Magic_Hat','Magic Rabit Hat','Armor',800,2,true,1,true,497,100,true,true,true,'bonus bDex,2;\nbonus bAgi,2;\nbonus bMdef,1;\nbonus bMaxSP,50;\nbonus3 bAutoSpellWhenHit,"MG_FIREBOLT",1,20;\nbonus3 bAutoSpellWhenHit,"MG_COLDBOLT",1,20;\nbonus3 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",1,20;');
  1614. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,70,true,489,100,true,true,true,'bonus bMdef,10;');
  1615. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,50,true,492,100,true,true,true,'skill "DC_DONTFORGETME",1;\nbonus bDex,2;\nbonus bLuk,2;');
  1616. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5506,'Blue_Pajamas_Hat','Blue Night Cap','Armor',100,4,true,1,true,501,'bonus bBaseAtk,5;\nbonus bMatkRate,5;');
  1617. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5507,'Pink_Pajamas_Hat','Pink Night Cap','Armor',100,4,true,1,true,502,'bonus bBaseAtk,5;\nbonus bMatkRate,5;');
  1618. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5508,'Shark_Hat','Shark Hat','Armor',20,500,3,true,1,true,503,100,true,true,true,'bonus bStr,1;\nbonus bAgi,2;\nbonus bMdef,1;\nbonus2 bAddEle,Ele_Water,5;\nbonus2 bSubEle,Ele_Water,10;');
  1619. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5509,'Sting_Hat','Sting hat','Armor',20,1000,5,true,1,true,504,100,true,true,true,'bonus bStr,2;\nbonus bVit,1;\nbonus bMdef,3;\nbonus2 bAddEle,Ele_Fire,5;\nbonus2 bSubEle,Ele_Earth,5;\nbonus3 bAutoSpell,"WZ_EARTHSPIKE",1,10;');
  1620. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5510,'Shower_Cap','Shower Cap','Armor',20,4,true,1,true,507,'bonus bMdef,3;\nbonus bFlee,3;\nbonus2 bAddEle,Ele_Water,10;\nbonus2 bSubRace,RC_Fish,10;');
  1621. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,30,true,508,100,true,true,true,'bonus bSPrecovRate,8;');
  1622. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5512,'Aquarius_Diadem','Aquarius Diadem','Armor',20,300,6,true,1,70,true,509,'bonus bStr,2;\nbonus bFlee,10;\nbonus2 bSubEle,Ele_Wind, 5;\nif (getrefine()>6) {\n bonus bDef, 1;\n bonus bBaseAtk,15;\n}');
  1623. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5513,'Aquarius_Crown','Aquarius Crown','Armor',20,300,6,true,1,70,true,510,'bonus bStr,2;\nbonus bFlee,10;\nbonus2 bSubEle,Ele_Wind, 5;\nif (getrefine()>6) {\n bonus bDef, 1;\n bonus bBaseAtk,15;\n}');
  1624. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5514,'Pisces_Diadem','Pisces Diadem','Armor',20,300,6,true,1,70,true,511,'bonus bInt,2;\nbonus bMdef,5;\nbonus2 bSubEle,Ele_Water, 5;\nif (getrefine()>6) {\n bonus bDef, 1;\n bonus bMatkRate,2;\n}');
  1625. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5515,'Pisces_Crown','Pisces Crown','Armor',20,300,6,true,1,70,true,512,'bonus bInt,2;\nbonus bMdef,5;\nbonus2 bSubEle,Ele_Water, 5;\nif (getrefine()>6) {\n bonus bDef, 1;\n bonus bMatkRate,2;\n}');
  1626. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_hunter`,`class_upper`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5516,'Hawk_Eyes01','hawk Eyes','Armor',10,100,true,true,true,1,60,23,'bonus bDex,1;');
  1627. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`job_archer`,`job_barddancer`,`job_hunter`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5517,'Hawk_Eyes02','Hawk Eyes','Armor',10,100,true,true,true,true,1,60,23,'bonus bDex,1;');
  1628. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5518,'L_Magestic_Goat2','Gigantic Majestic Goat','Armor',20,800,5,true,1,50,true,513,'bonus2 bSubRace,RC_DemiHuman,12;\nbonus2 bSubRace,RC_Player_Human,12;\nbonus bBaseAtk,(JobLevel*2)/7;');
  1629. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,514,100,true,true,true,'bonus bInt,2;');
  1630. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5520,'Rabbit_Earplug','Rabbit Earplugs','Armor',400,1,true,true,1,1,true,515,'bonus2 bAddClass,Class_All,4;\nbonus bMatkRate,4;');
  1631. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`armor_level`,`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,1,194,100,true,true,true,true,true,true,true,true,'bonus bDelayRate,-3;');
  1632. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5522,'Fanta_Zero_Lemon_Hat','Fanta Zero Lemon Hat','Armor',20,100,4,1,true,1,true,516);
  1633. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5523,'Sakura_Mist_Hat','Sakura Mist Hat','Armor',20,100,4,1,true,1,true,517,'bonus bDex,1;');
  1634. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5524,'Sakura_Milk_Tea_Hat','Sakura Milk Tea Hat','Armor',20,100,4,1,true,1,true,518,'bonus bVit,1;');
  1635. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5525,'First_Leaf_Tea_Hat','Flower Hat','Armor',20,100,4,1,true,1,true,519,'bonus bMaxHP,80;\nbonus bMaxSP,20;');
  1636. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,60,520,100,true,true,true,'bonus bAgi,2;\nbonus bFlee,3;\nbonus2 bSubEle,Ele_Wind, 5;\nbonus2 bAddMonsterDropItem, 513, 200;');
  1637. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,521,100,true,true,true,'bonus bLuk,5;\nbonus bMdef,2;\nbonus bFlee2,5;\nbonus2 bAddMonsterDropItem,622,50;');
  1638. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,30,522,100,true,true,true,true,true,'bonus bAgi,1;');
  1639. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,70,true,523,100,true,true,true,true,true,'bonus bDex,3;\nbonus2 bSubEle,Ele_Neutral,5;\nskill "WZ_FROSTNOVA",1;');
  1640. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,30,true,524,100,true,true,true);
  1641. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5531,'B_Dragon_Hat','Baby Dragon Hat','Armor',45000,100,1,1,true,1,true,525,'bonus bDex,2;\n.@bonus = max(getskilllv("TF_DOUBLE"), 5);\nskill "TF_DOUBLE",.@bonus;\nbonus bDoubleRate,.@bonus * 5;');
  1642. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5532,'Pirate_Dagger_J','Pirate Dagger','Armor',20,100,true,1,true,327,100,true,true,true,'bonus bShortWeaponDamageReturn,1;');
  1643. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5533,'Emperor_Wreath_J','Emperor Wreath','Armor',20,800,3,1,true,1,80,true,261,'bonus bAllStats,1;');
  1644. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5535,'Side_Cap','Side Cap','Armor',500,3,true,1,true,529,'bonus bVit,1;\nbonus bDex,1;\nbonus bMdef,3;\nbonus2 bSubRace,RC_DemiHuman,5;\nbonus2 bSubRace,RC_Player_Human,5;\nbonus2 bAddRace,RC_DemiHuman,3;\nbonus2 bAddRace,RC_Player_Human,3;');
  1645. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`armor_level`,`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,1,526,100,true,true,true,true,true,true,true,true,'bonus2 bAddMonsterDropItem,6187,1000;');
  1646. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,45,527,100,true,true,true,'bonus bAgi,3;');
  1647. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,45,528,100,true,true,true,'bonus bDex,3;');
  1648. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,25,true,530,100,true,true,true,'bonus bMdef,2;\nskill "MC_LOUD", 1;');
  1649. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5540,'Freyja_SCirclet7','Freyja SCirclet7','Armor',20,700,8,true,1,20,18,'bonus bStr,1;\nbonus bInt,1;\nbonus bDex,1;');
  1650. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5541,'Freyja_SCirclet30','Freyja SCirclet30','Armor',20,700,8,true,1,20,18,'bonus bStr,1;\nbonus bInt,1;\nbonus bDex,1;');
  1651. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5542,'Freyja_SCirclet60','Freyja SCirclet60','Armor',20,700,8,true,1,20,18,'bonus bStr,1;\nbonus bInt,1;\nbonus bDex,1;');
  1652. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5543,'Freyja_SCirclet90','Freyja SCirclet90','Armor',20,700,8,true,1,20,18,'bonus bStr,1;\nbonus bInt,1;\nbonus bDex,1;');
  1653. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`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,1,true,240,100,true,true,true,true,true,true,'bonus bInt,2;\nbonus bMaxSP,50;');
  1654. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,70,true,531,100,true,true,true,'bonus bVit,2;\nbonus2 bSubEle,Ele_fire,5;\nif (getrefine()>6) {\n bonus bDef,1;\n bonus bVit,1;\n}');
  1655. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,70,true,532,100,true,true,true,'bonus bVit,2;\nbonus2 bSubEle,Ele_fire,5;\nif (getrefine()>6) {\n bonus bDef,1;\n bonus bVit,1;\n}');
  1656. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5547,'RJC_Katusa','RJC Katusa Flower','Armor',20,200,1,1,true,1,true,533,100,true,true,true,'bonus2 bSkillAtk, "WZ_HEAVENDRIVE", 15 + getequiprefinerycnt(EQI_HAND_R);\nbonus2 bSkillAtk, "WZ_EARTHSPIKE", 15 + getequiprefinerycnt(EQI_HAND_R);\nbonus2 bCastrate, "WZ_HEAVENDRIVE", -25;\nbonus2 bCastrate, "WZ_EARTHSPIKE", -25;\n;');
  1657. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`equip_level_min`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5548,'Scarlet_Rose','Scarlet Rose','Armor',20,100,true,1,50,true,534,100,true,true,true,'bonus bLuk,1;');
  1658. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,70,true,535,100,true,true,true,'bonus bDex,2;\nbonus bDelayRate,-2;\nbonus2 bSubEle,Ele_earth,5;\nif (getrefine()>6) {\n bonus bDex,1;\n bonus bMatkRate,1;\n}');
  1659. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,70,true,536,100,true,true,true,'bonus bDex,2;\nbonus bDelayRate,-2;\nbonus2 bSubEle,Ele_earth,5;\nif (getrefine()>6) {\n bonus bDex,1;\n bonus bMatkRate,1;\n}');
  1660. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5552,'Fest_Lord_Circlet','Festival Grand Circlet','Armor',8,true,1,93,'bonus bStr,3;\nbonus bInt,3;\nbonus bMdef,3;');
  1661. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5553,'Fest_Bunny_Band','Festival Bunny Band','Armor',7,true,1,15,'bonus bMdef,4;\nbonus2 bSubRace,RC_DemiHuman,9;\nbonus2 bSubRace,RC_Player_Human,9;');
  1662. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,20,true,538,100,true,true,true,'bonus3 bAutoSpell,"SM_PROVOKE",5,10;\nbonus bUnbreakableHelm;');
  1663. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`trade_override`,`trade_nodrop`,`trade_nosell`,`trade_noguildstorage`,`script`) VALUES (5555,'Leaf_Cat_Hat','Leaf Cat Hat','Armor',20,100,3,true,1,true,539,100,true,true,true,'bonus bAgi,1;\nbonus3 bAutoSpellWhenHit,"AL_HEAL",3,10;');
  1664. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5556,'Fur_Seal_Hat','Seal Hat','Armor',20,500,3,true,true,true,1,55,true,540,'bonus bInt,1;\nbonus3 bAutoSpell,"WZ_FROSTNOVA",1,30;');
  1665. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`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,1,20,true,541,100,true,true,true,'bonus bAgi,3;');
  1666. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5558,'Saci_Hat','Luxury Hat','Armor',20,100,6,1,true,1,30,true,542,'bonus3 bAddMonsterDropItem,510,RC_Plant,500;');
  1667. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5559,'Piece_Of_White_Cloth_E','Piece Of White Cloth','Armor',1,true,1,true,543);
  1668. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5560,'Bullock_Helm_J','Bullock Helm','Armor',20,3000,3,true,1,75,true,322,'bonus bMaxHP,100;\nbonus bNoKnockback;\nbonus2 bSubEle,Ele_Neutral,-20;\nbonus2 bSubEle,Ele_Fire,-20;\nbonus2 bSubEle,Ele_Water,-20;\nbonus2 bSubEle,Ele_Wind,-20;\nbonus2 bSubEle,Ele_Earth,-20;\nbonus2 bSubEle,Ele_Dark,-20;\nbonus2 bSubEle,Ele_Holy,-20;\nbonus2 bSubEle,Ele_Ghost,-20;');
  1669. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5561,'Rabbit_Magic_Hat_J','Magic Rabbit Hat','Armor',800,1,true,1,true,497,'bonus bInt,1;\nbonus bMaxSP,50;\nbonus4 bAutoSpellWhenHit,"MG_FIREBOLT",3,10,3;\nbonus4 bAutoSpellWhenHit,"MG_COLDBOLT",3,10,3;\nbonus4 bAutoSpellWhenHit,"MG_LIGHTNINGBOLT",3,10,3;\nbonus3 bAutoSpellWhenHit,"AL_HEAL",1,10;');
  1670. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5562,'Good_Wedding_Veil_J','Luxurious Wedding Veil','Armor',500,1,true,true,1,45,489,'bonus bMdef,10;\nbonus bCastRate,-3;\nbonus bUseSPrate,-5;');
  1671. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,85,true,544,100,true,true,true,'bonus bInt,4;\nbonus bCastRate,-10;');
  1672. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,545,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,10;\nbonus2 bAddRace,RC_Player_Human,10;');
  1673. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,546,100,true,true,true,true,true,true,true,true,'bonus2 bAddRace,RC_DemiHuman,2;\nbonus2 bAddRace,RC_Player_Human,2;');
  1674. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,548,100,true,true,true,'bonus bStr,1;\nbonus2 bAddClass,Class_All,2;\nbonus bAspdRate,2;');
  1675. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`refineable`,`view`,`script`) VALUES (5568,'Rabbit_Bonnet','Rabbit Bonnet','Armor',20,1000,1,1,true,true,1,true,549,'bonus bInt,2;');
  1676. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,70,true,550,100,true,true,true,'bonus bAgi,2;\nbonus bMatkRate,2;\nif (getrefine()>6) {\n bonus bMdef,7;\n bonus bMAtkRate,8;\n bonus2 bSubEle,Ele_Wind,5;\n}');
  1677. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,70,true,551,100,true,true,true,'bonus bAgi,2;\nbonus bBaseAtk,2;\nbonus bMdef,5;\nif (getrefine()>6) {\n bonus bDef,1;\n bonus bMatk,15;\n bonus bFlee,10;\n bonus2 bSubEle,Ele_Wind,5;\n}');
  1678. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5572,'Savage_Baby_Hat','Savage Babe Hat','Armor',20,100,1,1,true,1,1,true,553,'bonus bVit,2;');
  1679. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5573,'Bogy_Horn','Dokebi Horn','Armor',20,100,1,1,true,1,true,554);
  1680. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_low`,`armor_level`,`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,1,10,555,100,true,true,true,'bonus bdex,2;\nbonus bHitRate,3;');
  1681. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`view`) VALUES (5575,'Onigiri_Hat','Rice Ball Hat','Armor',20,100,6,1,true,1,30,556);
  1682. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`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,1,80,true,479,100,true,true,'bonus bStr,3;');
  1683. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5578,'Voyage_Hat','Voyage_Hat','Armor',200,10,1,true,1,true,236,'bonus bAgi,2;');
  1684. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,70,true,558,100,true,true,true,'bonus bAgi,2;');
  1685. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,70,true,560,100,true,true,true,'bonus bInt,2;\nbonus2 bSubEle,Ele_water, 5;\nif (getrefine()>6) {\n bonus bMdef,1;\n bonus bHealPower, 3;\n bonus bMatkRate,2;\n}');
  1686. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,70,true,561,100,true,true,true,'bonus bStr,2;\nbonus2 bSubEle,Ele_water, 5;\nif (getrefine()>6) {\n bonus bDef, 1;\n bonus bBaseAtk,15;\n bonus bFlee,10;\n}');
  1687. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`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,1,12,true,465,100,true,true,true,true,true,true,true);
  1688. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,562,100,true,true,true,'bonus2 bSubRace,RC_Demon,3;\nbonus2 bHPDrainRate,3,15;\nbonus2 bSPDrainRate,1,7;');
  1689. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5585,'Rune_Hairband','Rune Cloth Circlet','Armor',20,400,1,1,true,true,1,1,true,564);
  1690. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5586,'Mosquito_Coil','Mosquito Coil','Armor',20,100,1,1,true,1,1,true,563);
  1691. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,563,100,true,true,true,true,true,true,true);
  1692. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5590,'K_Poring_Cake_Cap','Poring Cake Hat','Armor',20,200,1,true,1,true,417);
  1693. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5592,'Sigrun\'s_Wing','Sigrun\'s Wings','Armor',20,100,2,true,1,80,568,'if (BaseClass == Job_Swordman || BaseClass == Job_Merchant || BaseClass == Job_Thief || (BaseJob == Job_Taekwon && Class!=Job_Soul_Linker))\n bonus bStr,1;\nelse if (BaseClass == Job_Mage || BaseClass == Job_Acolyte || class == Job_Ninja || class == Job_Soul_Linker)\n bonus bInt,1;\nelse if (BaseClass == Job_Archer || BaseClass == Job_Gunslinger)\n bonus bDex,1;\nelse if (BaseJob == Job_Novice || BaseJob == Job_SuperNovice) {\n bonus bMaxHP,80;\n bonus bMaxSP,30;\n}');
  1694. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5593,'K_Rabbit_Bonnet','Rabbit Bonnet','Armor',20,200,1,1,true,true,1,1,true,549);
  1695. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`armor_level`,`equip_level_min`,`view`) VALUES (5594,'Donut_In_Mouth','Donut In Mouth','Armor',20,50,1,true,1,1,569);
  1696. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`armor_level`,`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,1,571,100,true,true,true,true,true,true,true,true,'bonus bMdef,2;');
  1697. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_low`,`armor_level`,`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,1,572,100,true,true,true,true,true,true,true,true,'bonus bMdef,2;');
  1698. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5600,'Br_Twin_Ribbon','Brazil Twin Ribbon','Armor',20,100,1,true,1,1,true,575,'bonus bAllStats,3;\nbonus bMdef,1;');
  1699. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,577,100,true,true,true,true,true,true,true,'bonus bAllStats, 3;');
  1700. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,578,100,true,true,true,true,true,true,true,'bonus bAllStats, 2;');
  1701. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,579,100,true,true,true,true,true,true,true,'bonus bAllStats, 1;');
  1702. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5653,'Darkness_Helm_J','Darkness Helm','Armor',20,500,3,1,true,1,70,true,586);
  1703. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,10,true,587,100,true,true,true,'bonus bStr,2;\nbonus3 bAutoSpell,"PR_ASPERSIO",2,30;');
  1704. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5658,'Imp_Hat','Imp Hat','Armor',20,400,1,true,1,1,true,589,'bonus3 bAutoSpell,"SA_FLAMELAUNCHER",1,5;');
  1705. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5659,'Sleepr_Hat','Sleeper Hat','Armor',20,400,1,true,1,1,true,590,'bonus3 bAutoSpell,"SA_SEISMICWEAPON",1,5;');
  1706. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5660,'Gryphon_Hat','Gryphon Hat','Armor',20,400,1,true,1,1,true,591,'bonus3 bAutoSpell,"SA_LIGHTNINGLOADER",1,5;');
  1707. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5664,'Filir_Wing','Filir\'s Pinions','Armor',20,100,1,true,1,70,595,'bonus bAspdRate,2;\nbonus bCastRate,-2;');
  1708. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5665,'Shaman_Hat','Shaman Hat','Armor',20,400,1,1,true,1,1,true,596,'bonus2 bSubEle,Ele_Neutral,3;\nbonus2 bSubEle,Ele_Water,3;\nbonus2 bSubEle,Ele_Earth,3;\nbonus2 bSubEle,Ele_Fire,3;\nbonus2 bSubEle,Ele_Wind,3;\nbonus2 bSubEle,Ele_Poison,3;\nbonus2 bSubEle,Ele_Holy,3;\nbonus2 bSubEle,Ele_Dark,3;\nbonus2 bSubEle,Ele_Ghost,3;\nbonus2 bSubEle,Ele_Undead,3;');
  1709. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5666,'Golden_Crown','Golden Crown','Armor',20,500,8,1,true,1,1,true,597,'bonus bInt,1;\nbonus bDex,1;\nbonus bLuk,1;');
  1710. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`armor_level`,`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,1,30,true,598,100,true,true,true);
  1711. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`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,1,true,206,100,true,true,true,true,true,true,true,'bonus bMdef,5;');
  1712. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`view`) VALUES (5671,'Drooping_Morocc_Minion','Drooping Morocc Minion','Armor',20,300,1,true,1,70,600);
  1713. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5681,'F_Ribbon_Green','Green Ribbon','Armor',800,100,1,true,1,true,244,'bonus bMdef,3;');
  1714. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5682,'Triangle_Rune_Cap','Triangle Rune Cap','Armor',20,300,5,1,true,1,1,true,610,'bonus bHealPower,2;\nif (getrefine() > 6) {\n bonus bMatk,10;\n bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",8,150,BF_MAGIC,0;\n}\nelse {\n bonus5 bAutoSpellWhenHit,"NPC_MAGICMIRROR",7,150,BF_MAGIC,0;\n}');
  1715. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5683,'Majestic_Goat_Repl','Baphomet Horns','Armor',20,100,5,true,1,1,true,41);
  1716. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5684,'Jewel_Crown_Repl','Ornate Crown','Armor',20,100,5,true,1,1,true,88);
  1717. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5685,'Prontera_Army_Cap_Repl','Army Cap','Armor',20,100,5,true,1,1,true,48);
  1718. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5686,'Feather_Bonnet_Repl','Nice Hat Feather','Armor',20,100,5,true,1,1,true,104);
  1719. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5687,'Viking_Helm_Repl','Orc Helm','Armor',20,100,5,true,1,1,true,86);
  1720. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5690,'Red_Wing_Hat','Red Wing Hat','Armor',20,600,2,1,true,1,50,true,613,'if (getrefine()>6) {\n bonus2 bAddClass,Class_All,2;\n bonus bMatkRate,2;\n}\nif (getrefine()>8) {\n bonus2 bAddClass,Class_All,2;\n bonus bMatkRate,2;\n}');
  1721. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5691,'Catain_Bandanna','Sailor\'s Bandana','Armor',20,10,1,true,1,1,true,542,'bonus bDex,1;\nbonus2 bSubEle,Ele_Poison,20;');
  1722. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5692,'Sea_Cat_Hat','Sea Cat Hat','Armor',20,10,1,true,1,1,true,539,'bonus bDex,1;');
  1723. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,616,100,true,true,true,'bonus bStr,1;\nbonus bInt,1;\nbonus bMdef,3;\nbonus2 bSubEle,Ele_Water,7;\nbonus2 bAddMonsterDropItem,530,100;\nbonus2 bAddMonsterDropItem,12354,300;\nif (getrefine()>7) {\n bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",5,20,BF_WEAPON|BF_MAGIC,0;\n}\nelse {\n bonus5 bAutoSpellwhenhit,"BA_FROSTJOKER",1,20,BF_WEAPON|BF_MAGIC,0;\n}');
  1724. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`armor_level`,`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,1,10,true,101,100,true,true,true,true,true,true,true);
  1725. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5742,'Rudolf_Santa_Hat','Rudolph Santa Hat','Armor',20,400,5,true,1,10,true,619,'bonus bLuk,1;');
  1726. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,349,100,true,true,true,'autobonus "{ sc_start SC_WINDWEAPON, 180000, 1; }", 3, 180000, BF_WEAPON, "{ specialeffect2 EF_ENHANCE; }";');
  1727. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (5771,'Family_Hat','Family Hat','Armor',20,100,3,1,true,1,1,true,109,'bonus bDex,1;\nbonus bMdef,1;');
  1728. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`armor_level`,`equip_level_min`,`view`) VALUES (5775,'Choco_Donut_In_Mouth','Choco Donut In Mouth','Armor',20,50,1,true,1,1,653);
  1729. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`location_head_top`,`armor_level`,`view`) VALUES (5781,'Persika','Persika','Armor',20,100,1,true,1,659);
  1730. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`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,1,665,100,true,true,true,true,true,true,true,'bonus bLuk,1;');
  1731. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`) VALUES (5788,'3D_Glasses','3D Glasses','Armor',20,100,1,true,1,1,661);
  1732. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5792,'Fish_Pin','Fish Pin','Armor',20,100,3,true,1,1,true,669);
  1733. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5793,'Ribbon_Of_Life','Ribbon Of Life','Armor',20,2,true,1,1,575,'bonus bInt,1;\nbonus bMdef,2;');
  1734. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`) VALUES (5794,'3D_Glasses_','3D Glasses','Armor',20,1,true,1,1,661);
  1735. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`armor_level`,`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,1,369,100,true,true,true,true,true,true,true,true);
  1736. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`armor_level`,`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,1,369,100,true,true,true,true,true,true,true,true);
  1737. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`armor_level`,`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,1,369,100,true,true,true,true,true,true,true,true);
  1738. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`armor_level`,`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,1,369,100,true,true,true,true,true,true,true,true);
  1739. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`,`script`) VALUES (5800,'Blush_Of_Groom','Blush of Groom','Armor',20,50,true,1,125,'bonus2 bSubRace,RC_DemiHuman,3;\nbonus2 bSubRace,RC_Player_Human,3;');
  1740. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5801,'Ribbon_Of_Bride','Red Tailed Ribbon','Armor',20,100,5,true,1,true,167,'bonus bAllStats,2;\nbonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;\nif (getskilllv("AL_HEAL") == 10) {\n bonus3 bAutoSpellWhenHit,"AL_HEAL",10,20;\n}\nelse {\n bonus3 bAutoSpellWhenHit,"AL_HEAL",5,20;\n}');
  1741. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`) VALUES (5802,'Upgrade_Elephant_Hat','Upgraded Elephant Hat','Armor',500,3,1,true,1,true,215);
  1742. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5803,'Flower_Love_Hat','Love Flower Hat','Armor',20,100,2,true,1,true,5,'bonus2 bAddMonsterDropItem,608,100;');
  1743. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_mid`,`armor_level`,`view`) VALUES (5804,'Pirate_Eyepatch','Pirate Eye Bandage','Armor',1000,100,true,1,13);
  1744. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,70,43,100,true,true,true,true,true,true,true,'bonus bMaxHPrate,15;\nbonus bSPrecovRate,5;');
  1745. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,67,100,true,true,true,true,true,true,true);
  1746. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5807,'October_Fest_Cap','October Fest Cap','Armor',20,100,1,true,false,false,true,1,50,true,104);
  1747. 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`,`armor_level`,`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,1,true,364,'bonus2 bResEff,Eff_Stone,2000+(getrefine()*200);\nbonus2 bResEff,Eff_Freeze,2000+(getrefine()*200);\nbonus2 bResEff,Eff_Stun,2000+(getrefine()*200);');
  1748. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5809,'Boom_Boom_Hat','Boom Boom Hat','Armor',100,6,true,1,216,'bonus bAllStats,5;');
  1749. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5810,'Ph.D_Hat_V','Ph.D Hat V','Armor',20,100,3,true,false,false,true,1,true,98,'bonus bInt,5;\nbonus bVit,3;\nbonus bDex,3;');
  1750. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`armor_level`,`view`) VALUES (5811,'Santa_Beard','Santa\'s Beard','Armor',20,100,5,true,1,25);
  1751. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`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,1,true,16,100,true,true,true,true,true,true,true,true);
  1752. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5815,'Classic_Hat_J','Classic Hat','Armor',20,500,2,true,1,true,475,'bonus bStr,1;\nbonus2 bSubSize, 0, 5;\nbonus2 bSubSize, 1, 5;\nbonus2 bSubSize, 2, 5;');
  1753. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (5816,'Cowboy_Hat_J','Purple Cowboy Hat','Armor',20,500,true,1,true,411,'bonus bBaseAtk,15;\nbonus bFlee,-5;');
  1754. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true,'bonus bAllStats,2;\nbonus bMdef,3;');
  1755. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`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,1,true,505,100,true,true,true,true,true,true,true,true,'bonus bAllStats, 3;');
  1756. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`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,1,true,506,100,true,true,true,true,true,true,true,true,'bonus bAllStats, 3;');
  1757. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,499,100,true,true,true,true,true,true,true,true,'bonus2 bExpAddClass,Class_All,5;');
  1758. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`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,1,true,500,100,true,true,true,true,true,true,true,'bonus bLuk,4;\nbonus bMaxHP,100;\nbonus bMaxSP,100;\nbonus2 bSubRace,RC_DemiHuman,7;\nbonus2 bSubRace,RC_Player_Human,7;\nbonus2 bSubRace,RC_Undead,7;');
  1759. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5824,'Fools_Day_Hat','Fools Day Hat','Armor',20,300,6,1,true,1,30,true,265);
  1760. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`location_head_top`,`armor_level`,`view`,`script`) VALUES (5826,'Valkyrie_Helmet','Valkyrie Helmet','Armor',10,true,1,225,'bonus bStr,2;\nbonus bInt,2;\nbonus bDex,2;\nbonus bAgi,2;\nbonus bMdef,5;');
  1761. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (5827,'Book_File_Hat','Book File Hat','Armor',20,100,1,true,1,1,true,423);
  1762. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (5828,'Honor_Gold_Ring','Honor Gold Ring','Armor',50,true,true,1,1,'bonus bAllStats,1;\nbonus bMdef,5;');
  1763. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_right_accessory`,`location_left_accessory`,`armor_level`,`equip_level_min`,`script`) VALUES (5844,'Loyal_Ring3','Loyal Ring3','Armor',true,true,1,1,'bonus bAllStats,3;');
  1764. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_low`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (5846,'Buzzy_Ball_Gum','Buzzy Ball Gum','Armor',50,100,1,true,1,1,572,'bonus bMdef,5;');
  1765. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`defense`,`location_head_top`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`) VALUES (5851,'Summer_Knight','Summer Knight','Armor',20,1,true,true,1,60,138);
  1766. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,671,100,true,true,true,true,true,true,true,true,'bonus bStr,2;\nbonus bDex,2;');
  1767. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,672,100,true,true,true,true,true,true,true,true,'bonus bInt,2;\nbonus bVit,2;');
  1768. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,673,100,true,true,true,true,true,true,true,true,'bonus bInt,2;\nbonus bDex,2;');
  1769. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`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,1,true,674,100,true,true,true,true,true,true,true,true,'bonus bAllStats,1;');
  1770. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9001,'Poring_Egg','Poring Egg','Petegg',20);
  1771. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9002,'Drops_Egg','Drops Egg','Petegg',20);
  1772. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9003,'Poporing_Egg','Poporing Egg','Petegg',20);
  1773. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9004,'Lunatic_Egg','Lunatic Egg','Petegg',20);
  1774. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9005,'Picky_Egg','Picky Egg','Petegg',20);
  1775. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9006,'Chonchon_Egg','Chonchon Egg','Petegg',20);
  1776. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9007,'Steel_Chonchon_Egg','Steel Chonchon Egg','Petegg',20);
  1777. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9008,'Hunter_Fly_Egg','Hunter Fly Egg','Petegg',20);
  1778. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9009,'Savage_Bebe_Egg','Savage Babe Egg','Petegg',20);
  1779. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9010,'Baby_Desert_Wolf_Egg','Baby Desert Wolf Egg','Petegg',20);
  1780. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9011,'Rocker_Egg','Rocker Egg','Petegg',20);
  1781. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9012,'Spore_Egg','Spore Egg','Petegg',20);
  1782. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9013,'Poison_Spore_Egg','Poison Spore Egg','Petegg',20);
  1783. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9014,'PecoPeco_Egg','Peco Peco Egg','Petegg',20);
  1784. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9015,'Smokie_Egg','Smokie Egg','Petegg',20);
  1785. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9016,'Yoyo_Egg','Yoyo Egg','Petegg',20);
  1786. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9017,'Orc_Warrior_Egg','Orc Warrior Egg','Petegg',20);
  1787. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9018,'Munak_Egg','Munak Egg','Petegg',20);
  1788. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9019,'Dokkaebi_Egg','Dokebi Egg','Petegg',20);
  1789. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9020,'Sohee_Egg','Sohee Egg','Petegg',20);
  1790. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9021,'Isis_Egg','Isis Egg','Petegg',20);
  1791. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9022,'Green_Petite_Egg','Green Petite Egg','Petegg',20);
  1792. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9023,'Deviruchi_Egg','Deviruchi Egg','Petegg',20);
  1793. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9024,'Bapho_Jr._Egg','Bapho Jr. Egg','Petegg',20);
  1794. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9025,'Bongun_Egg','Bongun Egg','Petegg',20);
  1795. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9026,'Zherlthsh_Egg','Zealotus Egg','Petegg',20);
  1796. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9027,'Alice_Egg','Alice Egg','Petegg',20);
  1797. 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);
  1798. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9029,'Santa_Goblin_Egg','Christmas Goblin\'s Egg','Petegg',20);
  1799. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9030,'Chung_E_Egg','Green Maiden Egg','Petegg',20);
  1800. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9031,'Spring_Rabbit_Egg','Spring Rabbit Egg','Petegg',20);
  1801. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9032,'Knife_Goblin_Egg','Knife Goblin Egg','Petegg',20);
  1802. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9033,'Flail_Goblin_Egg','Flail Goblin Egg','Petegg',20);
  1803. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9034,'Hammer_Goblin_Egg','Hammer Goblin Egg','Petegg',20);
  1804. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9035,'Red_Deleter_Egg','Red Deleter Egg','Petegg',20);
  1805. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9036,'Diabolic_Egg','Diabolic Egg','Petegg',20);
  1806. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9037,'Wanderer_Egg','Wanderer Egg','Petegg',20);
  1807. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9038,'New_Year_Doll_Egg','New Year Doll Egg','Petegg',20);
  1808. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9039,'Bacsojin_Egg','Bacsojin Egg','Petegg',20);
  1809. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9040,'Civil_Servant_Egg','Civil Servant Egg','Petegg',20);
  1810. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9041,'Leaf_Cat_Egg','Leaf Cat Egg','Petegg',20);
  1811. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9042,'Loli_Ruri_Egg','Loli Ruri Egg','Petegg',20);
  1812. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9043,'Marionette_Egg','Marionette Egg','Petegg',20);
  1813. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9044,'Shinobi_Egg','Shinobi Egg','Petegg',20);
  1814. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9045,'Whisper_Egg','Whisper Egg','Petegg',20);
  1815. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9046,'Goblin_Leader_Egg','Goblin Leader Egg','Petegg',20);
  1816. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9047,'Wicked_Nymph_Egg','Wicked Nymph Egg','Petegg',20);
  1817. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9048,'Miyabi_Ningyo_Egg','Miyabi Ningyo Egg','Petegg',20);
  1818. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9049,'Dullahan_Egg','Dullahan Egg','Petegg',20);
  1819. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9050,'Medusa_Egg','Medusa Egg','Petegg',20);
  1820. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9051,'Stone_Shooter_Egg','Stone Shooter Egg','Petegg',20);
  1821. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9052,'Incubus_Egg','Incubus Egg','Petegg',20);
  1822. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9053,'Golem_Egg','Golem Egg','Petegg',20);
  1823. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9054,'Nightmare_Terror_Egg','Nightmare Terror Egg','Petegg',20);
  1824. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9055,'Succubus_Egg','Succubus Egg','Petegg',20);
  1825. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (9056,'Imp_Egg','Imp Egg','Petegg',20);
  1826. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10001,'Skull_Helm','Skull Helm','Petarmor',20);
  1827. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10002,'Monster_Oxygen_Mask','Monster Oxygen Mask','Petarmor',20);
  1828. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10003,'Transparent_Headgear','Transparent Head Protector','Petarmor',20);
  1829. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10004,'Pacifier','Pacifier','Petarmor',20);
  1830. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10005,'Wig','Wig','Petarmor',20);
  1831. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10006,'Queen\'s_Hair_Ornament','Queen\'s Hair Ornament','Petarmor',20);
  1832. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10007,'Silk_Ribbon','Silk Ribbon','Petarmor',20);
  1833. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10008,'Punisher','Punisher','Petarmor',20);
  1834. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10009,'Wild_Flower','Wild Flower','Petarmor',20);
  1835. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10010,'Battered_Pot','Battered Pot','Petarmor',20);
  1836. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10011,'Stellar_Hairpin','Stellar Hairpin','Petarmor',20);
  1837. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10012,'Tiny_Egg_Shell','Tiny Egg Shell','Petarmor',20);
  1838. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10013,'Backpack','Backpack','Petarmor',1500);
  1839. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10014,'Rocker_Glasses','Rocker Glasses','Petarmor',2000);
  1840. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10015,'Green_Lace','Green Lace','Petarmor',20);
  1841. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10016,'Golden_Bell','Golden Bell','Petarmor',20);
  1842. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10017,'Bark_Shorts','Bark Shorts','Petarmor',20);
  1843. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10018,'Monkey_Circlet','Monkey Circlet','Petarmor',20);
  1844. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10019,'Red_Muffler','Red Scarf','Petarmor',20);
  1845. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10020,'Sword_Of_Grave_Keeper','Grave Keeper\'s Sword','Petarmor',20);
  1846. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10021,'Round_Hair_Ornament','Circular Headgear','Petarmor',20);
  1847. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10022,'Golden_Earing','Gold Earring','Petarmor',20);
  1848. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10023,'Green_Lucky_Bag','Green Jewel Bag','Petarmor',20);
  1849. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10024,'Fashionable_Glasses','Fashion Glasses','Petarmor',20);
  1850. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10025,'Star_Hairband','Hairband Of Stars','Petarmor',20);
  1851. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10026,'Wine_On_Sleeve','Tassel for Durumagi','Petarmor',20);
  1852. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10027,'Spirit_Chain_','Pet Soul Ring','Petarmor',20);
  1853. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10028,'Nice_Badge','Beautiful Badges','Petarmor',20);
  1854. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10029,'Jade_Trinket','Jade Trinket','Petarmor',20);
  1855. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10030,'Summer_Fan','Summer Fan','Petarmor',20);
  1856. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10031,'Death_Coil','Ring Of Death','Petarmor',20);
  1857. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10032,'Queen\'s_Coronet','Queen\'s Coronet','Petarmor',20);
  1858. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10033,'Apro_Hair','Afro','Petarmor',20);
  1859. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10034,'Ball_Mask','Masked Ball','Petarmor',20);
  1860. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10035,'Windup_Spring','Spring','Petarmor',20);
  1861. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10036,'Hell_Horn','Horn Of Hell','Petarmor',20);
  1862. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10037,'Black_Butterfly_Mask','Black Butterfly Mask','Petarmor',20);
  1863. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`) VALUES (10038,'Horn_Protector','Horn Barrier','Petarmor',20);
  1864. 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;');
  1865. 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;\nbonus2 bExpAddRace,RC_Dragon,10;');
  1866. 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;\nbonus2 bAddEff,Eff_Blind,500;\nbonus2 bAddEff2,Eff_Blind,50;');
  1867. 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;');
  1868. 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;');
  1869. 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);
  1870. 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;\nbonus2 bAddEff,Eff_Curse,1000;');
  1871. 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;');
  1872. 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;');
  1873. 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;\nbonus bCritical,3;\nbonus bAspdRate,3;');
  1874. 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;');
  1875. 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;');
  1876. 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;\nbonus2 bCriticalAddRace,RC_DemiHuman,10;\nbonus2 bCriticalAddRace,RC_Player_Human,10;');
  1877. 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;\nbonus2 bCriticalAddRace,RC_DemiHuman,10;\nbonus2 bCriticalAddRace,RC_Player_Human,10;');
  1878. 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;\nbonus3 bAutoSpell,"AL_HEAL",1,10;');
  1879. 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;\nbonus3 bAutoSpell,"AL_HEAL",1,10;');
  1880. 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;\nbonus2 bAddEff,Eff_Poison,3000;');
  1881. 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;');
  1882. 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;\nbonus2 bAddEle,Ele_Wind,10;\nbonus bUnbreakableWeapon;');
  1883. 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;\nbonus2 bAddEff,Eff_Blind,500;\nbonus2 bAddEff2,Eff_Blind,50;');
  1884. 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;');
  1885. 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;\nbonus bIgnoreDefRace,RC_Player_Human;\nbonus2 bSubRace,RC_DemiHuman,10;\nbonus2 bSubRace,RC_Player_Human,10;\nbonus2 bSubRace,RC_Demon,-10;\nbonus bMaxSPrate,10;\nbonus bSPDrainValue,3;');
  1886. 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;');
  1887. 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;');
  1888. 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;');
  1889. 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;');
  1890. 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;\nbonus bSPDrainValue,3;');
  1891. 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;');
  1892. 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) {\n bonus3 bAutoSpell,"NPC_SLOWCAST",2,70;\n} else\n bonus3 bAutoSpell,"NPC_SLOWCAST",1,50;');
  1893. 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;');
  1894. 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;\nbonus2 bExpAddRace,RC_Dragon,10;');
  1895. 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;');
  1896. 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;');
  1897. 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;\nbonus bMaxSPrate,15;\nbonus bAspdRate,2;\nbonus bAtkEle,Ele_Dark;');
  1898. 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);
  1899. 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);
  1900. 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;\nbonus bAgi,1;\nbonus2 bAddRace,RC_DemiHuman,75;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker)\n bonus bMatkRate,15;');
  1901. 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;\nbonus bAgi,1;\nbonus2 bAddRace,RC_DemiHuman,75;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus bUnbreakableWeapon;\nautobonus "{ bonus bDefRatioAtkClass,Class_All; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_HASTEUP; }";\nif (Class == Job_Ninja || Class == Job_Rogue || Class == Job_Stalker)\n bonus bMatkRate,15;');
  1902. 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;\nbonus bAgi,2;\nbonus bDex,1;\nbonus4 bAutoSpellOnSkill,"RG_BACKSTAP","SM_BASH",10,100;\nbonus2 bSkillAtk,"RG_BACKSTAP",20;');
  1903. 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;\nbonus bAspdRate,3;\nbonus2 bAddEff,Eff_Bleeding,300;\nbonus3 bAutoSpell,"NPC_CRITICALWOUND",1,30;');
  1904. 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);
  1905. 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);
  1906. 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;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus3 bAutoSpell,"PR_LEXDIVINA",1,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8)\n bonus4 bAutoSpellOnSkill,"RG_RAID","NPC_WIDEBLEEDING",1,250;');
  1907. 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;');
  1908. 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);
  1909. 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);
  1910. 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;\nbonus2 bSkillAtk,"RG_BACKSTAP",15;');
  1911. 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;\nautobonus "{ bonus2 bAddClass,Class_All,10; }",5,5000,BF_WEAPON|BF_SHORT,"{ specialeffect2 EF_POTION_BERSERK; }";');
  1912. 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;');
  1913. 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;');
  1914. 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;');
  1915. 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;');
  1916. 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;');
  1917. 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;');
  1918. 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;');
  1919. 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;\nif (getskilllv("GS_GLITTERING")>0)\n bonus3 bAutoSpell,"GS_GLITTERING",getskilllv("GS_GLITTERING"),100;');
  1920. 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;\nbonus bAspdRate,readparam(bAgi)/14;');
  1921. 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;\nbonus bHit,-10;\nbonus2 bAddRace,RC_DemiHuman,55;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nautobonus "{ bonus bAspdRate,100; }",10,3000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";\nbonus bUnbreakableWeapon;');
  1922. 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;\nbonus bAspdRate,readparam(bAgi)/14;\nbonus2 bAddClass,Class_All,10;\nbonus bMatkRate,10;');
  1923. 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;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,pow(getrefine()-4,2);\n bonus2 bAddRace,RC_Player_Human,pow(getrefine()-4,2);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n bonus4 bAutoSpellOnSkill,"GS_RAPIDSHOWER","GS_GLITTERING",1,1000;\n bonus2 bSkillAtk,"GS_RAPIDSHOWER",getrefine()*2;\n}');
  1924. 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;');
  1925. 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;');
  1926. 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);
  1927. 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;\nbonus bCritical,10;');
  1928. 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;\nbonus bCritical,10;');
  1929. 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;\nbonus bCritical,10;');
  1930. 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;');
  1931. 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;');
  1932. 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;\nbonus3 bAutoSpell,"GS_SPREADATTACK",6,50;');
  1933. 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);
  1934. 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;\nbonus2 bCriticalAddRace,RC_Player_Doram,10;');
  1935. 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;\nbonus2 bCriticalAddRace,RC_Player_Doram,10;');
  1936. 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;');
  1937. 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;');
  1938. 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);
  1939. 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;\nbonus bCritical,20;\nbonus bAspdRate,-3;\nbonus3 bAutoSpell,"GS_TRACKING",5,20;');
  1940. 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;\nbonus bCritical,20;\nbonus bAspdRate,-3;\nbonus3 bAutoSpell,"GS_TRACKING",5,20;');
  1941. 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;\nbonus bCritical,4;\nbonus bAspdRate,10;\nbonus bHit,-readparam(bDex)/3;');
  1942. 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;\nbonus bCritical,4;\nbonus bAspdRate,10;\nbonus bHit,-readparam(bDex)/3;');
  1943. 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;\nbonus3 bAutoSpell,"GS_SPREADATTACK",6,50;\nbonus bDef,getrefine();\nbonus bDex,1;');
  1944. 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;\nbonus bHit,-5;\nbonus bAspdRate,20;');
  1945. 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;\nbonus bHit,-5;\nbonus bAspdRate,20;');
  1946. 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;\nbonus bCritical,50;\nbonus bAspdRate,-5;');
  1947. 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;\nbonus bHit,10;\nbonus bCritical,10;\nbonus2 bAddRace,RC_DemiHuman,75;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bCastrate,"GS_TRACKING",-25;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  1948. 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;\nbonus2 bAddRace,RC_DemiHuman,35;\nbonus2 bAddRace,RC_Player_Human,35;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nautobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,120,1000; }",10,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";\nbonus bUnbreakableWeapon;');
  1949. 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;\nbonus bSplashRange,1;\nbonus2 bAddRace,RC_DemiHuman,55;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nautobonus "{ bonus bBaseAtk,80; bonus2 bHPLossRate,100,1000; }",30,6000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";\nbonus bUnbreakableWeapon;');
  1950. 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;\nbonus2 bAddRace,RC_DemiHuman,35;\nbonus2 bAddRace,RC_Player_Human,35;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nautobonus "{ bonus bBaseAtk,300; bonus2 bHPLossRate,120,1000; }",30,9000,BF_WEAPON,"{ specialeffect2 EF_BASH3D; }";\nbonus bUnbreakableWeapon;');
  1951. 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;\nbonus bCritical,50;\nbonus bAspdRate,-5;');
  1952. 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;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus2 bSkillAtk,"GS_TRIPLEACTION",30;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n bonus2 bCastrate,"GS_TRACKING",25;\n bonus2 bSkillAtk,"GS_TRACKING",getrefine() * 3;\n}');
  1953. 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;\nbonus2 bAddRace,RC_Player_Human,35;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus2 bSkillAtk,"GS_TRIPLEACTION",30;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n bonus2 bAddClass,Class_All,getrefine();\n}');
  1954. 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;\nbonus2 bAddRace,RC_Player_Human,55;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bSplashRange,1;\nbonus2 bSkillAtk,"GS_TRIPLEACTION",30;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n bonus2 bSkillAtk,"GS_SPREADATTACK",getrefine() * 2;\n bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000;\n}');
  1955. 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;\nbonus2 bAddRace,RC_Player_Human,35;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus2 bSkillAtk,"GS_TRIPLEACTION",30;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n bonus2 bSkillAtk,"GS_GROUNDDRIFT",getrefine() * 2;\n bonus3 bAddEffOnSkill,"GS_SPREADATTACK",Eff_Stun,2000;\n autobonus "{ bonus bAspdRate,20; }",200,20000,BF_WEAPON,"{ specialeffect2 EF_POTION_BERSERK; }";\n}');
  1956. 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;\nbonus bAtkEle,Ele_Wind;\nbonus bDex,-2;\nbonus bAgi,-1;');
  1957. 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;\nbonus2 bAddEff,Eff_Bleeding,100;');
  1958. 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;\nbonus2 bAddEff,Eff_Bleeding,100;');
  1959. 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;\nbonus bAtkEle,Ele_Fire;\nbonus bDex,-2;\nbonus3 bAutoSpell,"MG_FIREBALL",5,30;');
  1960. 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;\nbonus2 bSkillAtk,"NJ_HUUMA",30;\nbonus bNoCastCancel;');
  1961. 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;\nbonus bDex,1;\nbonus2 bAddRace,RC_DemiHuman,95;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  1962. 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;\nbonus bDex,1;\nbonus2 bAddRace,RC_DemiHuman,95;\nbonus2 bAddRace,RC_Player_Human,95;\nautobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000,BF_WEAPON,"{specialeffect2 EF_POTION_BERSERK; }";\nbonus bUnbreakableWeapon;');
  1963. 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;\nbonus2 bAddRace,RC_Player_Human,95;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bMatkRate,15;\nautobonus "{ bonus2 bSkillAtk,\\"NJ_HUUMA\\",100; bonus2 bSkillAtk,\\"NJ_ISSEN\\",100; }",50,10000;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-3)*(getrefine()-3);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-3)*(getrefine()-3);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>8) {\n bonus5 bAutoSpellOnSkill,"NJ_ISSEN","AL_HEAL",10,1000,1;\n bonus4 bAutoSpellOnSkill,"NJ_HUUMA","NPC_CRITICALWOUND",2,200;\n}');
  1964. 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;\nbonus bAtkEle,Ele_Fire;\nbonus bDex,2;');
  1965. 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;');
  1966. 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;\nbonus bStr,2;\nbonus bDef,1;');
  1967. 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;\nbonus bLuk,10;\nbonus bAtkEle,Ele_Holy;');
  1968. 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;\nbonus bStr,2;\nbonus bDef,1;');
  1969. 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;\nbonus bHPDrainRate,1;\nbonus2 bSPLossRate,15,10000;');
  1970. 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;');
  1971. 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;\nbonus2 bAddEff,Eff_Curse,300;');
  1972. 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;');
  1973. 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;\nbonus bDoubleRate,25;\nbonus2 bAddRace,RC_DemiHuman,40;\nbonus2 bAddRace,RC_Player_Human,40;');
  1974. 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;\nbonus bInt,2;\nskill "MG_FIREBOLT",5;\nbonus3 bAutoSpell,"MG_FIREBOLT",5,100;');
  1975. 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;\nbonus2 bSPVanishRate,45,30;\nbonus bSPDrainValue,-1;\nbonus bUnbreakableWeapon;');
  1976. 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;\nbonus bDex,1;\nbonus2 bAddRace,RC_DemiHuman,75;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;');
  1977. 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 (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,true,'bonus bStr,1;\nbonus bDex,1;\nbonus2 bAddRace,RC_DemiHuman,75;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus bMatkRate,10;\nbonus bUnbreakableWeapon;');
  1978. 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;\nskill "MG_FROSTDIVER",5;\nautobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;');
  1979. 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;\nskill "WZ_METEOR",3;\nautobonus "{ bonus bIgnoreDefClass,Class_Normal; }",50,5000;');
  1980. 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;\nbonus bInt,4;\nbonus bDex,1;\nbonus bMatkRate,5;\nbonus2 bAddEle,Ele_Neutral,10;\nbonus3 bAutoSpell,"MG_COLDBOLT",3,50;\nbonus4 bAutoSpellOnSkill,"MG_COLDBOLT","MG_FIREBOLT",3,1000;\nbonus4 bAutoSpellOnSkill,"MG_FIREBOLT","MG_LIGHTNINGBOLT",3,1000;\nbonus4 bAutoSpellOnSkill,"MG_LIGHTNINGBOLT","WZ_EARTHSPIKE",3,1000;');
  1981. 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);
  1982. 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;\nbonus2 bAddRace,RC_Player_Human,75;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,20;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,20;\nbonus bUnbreakableWeapon;\nif (getrefine()>5) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine()-4)*(getrefine()-4);\n bonus2 bAddRace,RC_Player_Human,(getrefine()-4)*(getrefine()-4);\n bonus2 bIgnoreDefRaceRate,RC_DemiHuman,5;\n bonus2 bIgnoreDefRaceRate,RC_Player_Human,5;\n}\nif (getrefine()>6)\n bonus bAspdRate,5;\nif (getrefine()>8) {\n bonus bAspdRate,5;\n bonus4 bAutoSpellOnSkill,"SM_BASH","NPC_CRITICALWOUND",2,200;\n}');
  1983. 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;\nbonus bMatkRate,10;\nbonus bUnbreakableWeapon;\nif (getrefine()>5)\n bonus bUseSPrate,-10;\nif (getrefine()>8)\n bonus bInt,5;');
  1984. 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;\nbonus bMatkRate,10;\nbonus bUnbreakableWeapon;\nif (getrefine()>5)\n bonus bUseSPrate,-10;\nif (getrefine()>8)\n bonus4 bAutoSpellOnSkill,"PA_PRESSURE","PR_LEXAETERNA",1,1000;\nif (getrefine()>9)\n bonus bInt,5;');
  1985. 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);
  1986. 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;\nbonus bStr,2;\nbonus bInt,2;');
  1987. 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; }";');
  1988. 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;\nbonus2 bAddSize,Size_All,40;');
  1989. 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`,`armor_level`,`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,1,85,true,'bonus bStr,1;\nbonus bMdef,3;\nbonus2 bIgnoreDefRaceRate,RC_DemiHuman,10;\nbonus2 bIgnoreDefRaceRate,RC_Player_Human,10;\nbonus2 bIgnoreDefRaceRate,RC_Brute,10;\nbonus2 bIgnoreDefRaceRate,RC_Player_Doram,10;\nbonus3 bAutoSpellWhenHit,"NPC_WIDEBLEEDING",1,10;');
  1990. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`defense`,`job_all`,`job_novice`,`job_supernovice`,`location_armor`,`armor_level`,`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,1,100,true,true,true,true,true,true,true,true);
  1991. 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;\nbonus2 bSkillAtk,"AM_DEMONSTRATION",20;\nbonus bMaxSP,50;\nbonus bHealPower,10;');
  1992. 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;\nbonus2 bSkillAtk,"AM_ACIDTERROR",20;\nbonus2 bSkillAtk,"AM_DEMONSTRATION",20;\nbonus2 bAddMonsterDropItem,501,50;\nbonus2 bAddMonsterDropItem,502,20;\nbonus2 bAddMonsterDropItem,503,20;\nbonus2 bAddMonsterDropItem,504,20;\nbonus2 bAddMonsterDropItem,505,10;\nif (readparam(bStr)>=95)\n bonus2 bAddEff,Eff_Stun,500;');
  1993. 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;\nbonus2 bAddSize,Size_All,40;');
  1994. 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;');
  1995. 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;');
  1996. 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;');
  1997. 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;');
  1998. 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;\nbonus bInt,5;\nskill "AL_CURE",1;\nskill "AL_HEAL",1;\nbonus2 bResEff,Eff_Poison,5000;\nbonus2 bResEff,Eff_Curse,5000;\nbonus2 bResEff,Eff_Silence,5000;\nbonus2 bResEff,Eff_Confusion,5000;\nbonus2 bResEff,Eff_Blind,5000;');
  1999. 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;\nbonus bInt,5;\nskill "AL_CURE",1;\nskill "AL_HEAL",1;\nbonus2 bResEff,Eff_Poison,5000;\nbonus2 bResEff,Eff_Curse,5000;\nbonus2 bResEff,Eff_Silence,5000;\nbonus2 bResEff,Eff_Confusion,5000;\nbonus2 bResEff,Eff_Blind,5000;');
  2000. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`armor_level`,`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,1,369,100,true,true,true,true,true,true,true,true);
  2001. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`armor_level`,`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,1,369,100,true,true,true,true,true,true,true,true);
  2002. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_head_low`,`armor_level`,`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,1,369,100,true,true,true,true,true,true,true,true);
  2003. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (18503,'Small_Horn_Of_Devil','Small Devil Horns','Armor',20,100,2,true,1,1,562,'bonus bAtkRate,5;\nbonus bMatkRate,5;\nbonus bMaxHPRate,10;\nbonus bMaxSPRate,10;');
  2004. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`weight`,`defense`,`slots`,`location_head_low`,`armor_level`,`equip_level_min`,`view`,`script`) VALUES (18505,'Umbala_Spirit','Umbala Spirit','Armor',200,1,1,true,1,30,675,'bonus bVit,1;');
  2005. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`location_head_mid`,`location_head_low`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (18506,'Hattah_Black','Hattah Black','Armor',12000,4000,2,1,true,true,true,1,1,true,676);
  2006. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`slots`,`job_all`,`job_novice`,`job_supernovice`,`location_head_mid`,`armor_level`,`equip_level_min`,`view`) VALUES (18507,'Elven_Ears_','Elven Ears','Armor',20,100,1,true,false,false,true,1,70,73);
  2007. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18539,'Skull_Cap','Skull Cap','Armor',40,200,5,1,true,1,10,true,713,'bonus bMatkRate,2;\nif (getrefine() >= 5) {\n bonus bMatkRate,3;\n}\nif (getrefine() >= 7) {\n bonus bMatkRate,3;\n}');
  2008. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18595,'Horn_Of_Ancient','Horn of Ancient','Armor',40,200,8,1,true,1,50,true,757,'autobonus "{ bonus bBaseAtk,100; }",5,10000,0,"{ specialeffect2 EF_POTION_BERSERK; }";');
  2009. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18596,'Sprout_Hat','Sprout Hat','Armor',20,200,4,true,1,70,true,758,'skill "WZ_HEAVENDRIVE",3;');
  2010. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (18597,'Mercury_Helm','Mercury Riser','Armor',40,200,10,1,true,1,true,759,'bonus bAspdRate,3;\nbonus bCritical,3;\nif (getrefine() >= 7) {\n bonus bAspdRate,2;\n bonus bCritical,2;\n}\nif (getrefine() >= 9) {\n bonus bAspdRate,2;\n bonus bCritical,2;\n}');
  2011. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (18600,'Cat_Ears_Beret','Cat Ear Beret','Armor',20,100,5,true,1,true,761,'bonus bAtkRate,5;\nif (getrefine() > 5 && getrefine() <= 12) {\n bonus2 bAddRace,RC_DemiHuman,(getrefine() - 5);\n bonus2 bSubRace,RC_DemiHuman,(getrefine() - 5);\n bonus2 bAddRace,RC_Player_Human,(getrefine() - 5);\n bonus2 bSubRace,RC_Player_Human,(getrefine() - 5);\n}\nif (getrefine() > 12) {\n bonus2 bAddRace,RC_DemiHuman,7;\n bonus2 bAddRace,RC_Player_Human,7;\n bonus2 bSubRace,RC_DemiHuman,7;\n bonus2 bSubRace,RC_Player_Human,7;\n}');
  2012. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (18612,'White_Musang_Hat','White Musang Hat','Armor',40,200,3,1,true,1,true,770,'bonus bStr,2;\nbonus bVit,2;\nbonus bLuk,1;\nbonus bUnbreakableHelm;');
  2013. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`slots`,`location_head_top`,`armor_level`,`refineable`,`view`,`script`) VALUES (18613,'Black_Musang_Hat','Black Musang Hat','Armor',40,200,3,1,true,1,true,771,'bonus bInt,2;\nbonus bDex,2;\nbonus bAgi,1;\nbonus bUnbreakableHelm;');
  2014. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_mid`,`armor_level`,`equip_level_min`,`refineable`,`view`) VALUES (18620,'Heart_Eyepatch','Heart Eyepatch','Armor',5,200,2,true,1,20,true,779);
  2015. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`price_buy`,`weight`,`defense`,`location_head_top`,`armor_level`,`equip_level_min`,`refineable`,`view`,`script`) VALUES (18656,'Wit_Pumpkin_Hat','Witch\'s Pumpkin Hat','Armor',20,300,10,true,1,20,true,717,'bonus bMdef,10;\nbonus bStr,2;\nbonus bInt,2;\nbonus2 bMagicAddRace,RC_Undead,15;\nbonus2 bMagicAddRace,RC_Demon,15;');
  2016. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`location_costume_head_Low`,`armor_level`,`view`,`script`) VALUES (19500,'T_Mr_Smile','T Mr Smile','Armor',true,true,1,65,'bonus bStr,2;');
  2017. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`slots`,`location_costume_head_top`,`location_costume_head_Low`,`armor_level`,`view`) VALUES (19501,'T_Spinx_Helm','T Spinx Helm','Armor',1,true,true,1,137);
  2018. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Mid`,`armor_level`,`view`) VALUES (19504,'T_Sunglasses','T Sunglasses','Armor',true,1,12);
  2019. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_Low`,`armor_level`,`view`) VALUES (19505,'T_Cigarette','T Cigarette','Armor',true,1,54);
  2020. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`armor_level`,`refineable`,`view`) VALUES (19506,'T_Valkyrie_Feather_Band','T Valkyrie Feather Band','Armor',true,1,true,300);
  2021. REPLACE INTO `item_db` (`id`,`name_aegis`,`name_english`,`type`,`location_costume_head_top`,`armor_level`,`equip_level_min`,`view`) VALUES (19507,'Fine_Sun','Clear Sun','Armor',true,1,1,654);