armor.sql 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909
  1. --
  2. -- Table structure for table `armor`
  3. --
  4. DROP TABLE IF EXISTS `armor`;
  5. CREATE TABLE `armor` (
  6. `item_id` int(11) NOT NULL default '0',
  7. `name` varchar(70) default NULL,
  8. `bodypart` varchar(15) NOT NULL default '',
  9. `crystallizable` varchar(5) NOT NULL default '',
  10. `armor_type` varchar(5) NOT NULL default '',
  11. `weight` int(5) NOT NULL default '0',
  12. `material` varchar(15) NOT NULL default '',
  13. `crystal_type` varchar(4) NOT NULL default '',
  14. `avoid_modify` int(1) NOT NULL default '0',
  15. `durability` int(3) NOT NULL default '0',
  16. `p_def` int(3) NOT NULL default '0',
  17. `m_def` int(2) NOT NULL default '0',
  18. `mp_bonus` int(3) NOT NULL default '0',
  19. `price` int(11) NOT NULL default '0',
  20. `crystal_count` int(4) default NULL,
  21. `sellable` varchar(5) default NULL,
  22. PRIMARY KEY (`item_id`)
  23. ) TYPE=MyISAM;
  24. --
  25. -- Dumping data for table `armor`
  26. INSERT INTO `armor` (`item_id`,`name`,`bodypart`,`crystallizable`,`armor_type`,`weight`,`material`,`crystal_type`,`avoid_modify`,`durability`,`p_def`,`m_def`,`mp_bonus`,`price`,`crystal_count`,`sellable`) VALUES
  27. (21,'Shirt','chest','false','light',4830,'cloth','none',0,90,36,0,0,147,0,'true'),
  28. (22,'Leather Shirt','chest','false','light',4830,'leather','none',0,90,43,0,0,2430,0,'true'),
  29. (23,'Wooden Breastplate','chest','false','light',4820,'wood','none',0,90,47,0,0,7960,0,'true'),
  30. (24,'Bone Breastplate','chest','false','light',4770,'bone','none',0,85,50,0,0,20300,0,'true'),
  31. (25,'Piece Bone Breastplate','chest','false','heavy',8970,'bone','none',0,85,62,0,0,31800,0,'true'),
  32. (26,'Bronze Breastplate','chest','false','heavy',8920,'bronze','none',0,90,68,0,0,49200,0,'true'),
  33. (27,'Hard Leather Shirt','chest','false','light',4720,'leather','none',0,90,53,0,0,36900,0,'true'),
  34. (28,'Pants','legs','false','light',1740,'cloth','none',0,90,22,0,0,92,0,'true'),
  35. (29,'Leather Pants','legs','false','light',1730,'leather','none',0,90,27,0,0,1520,0,'true'),
  36. (30,'Hard Leather Pants','legs','false','light',1700,'leather','none',0,90,29,0,0,4970,0,'true'),
  37. (31,'Bone Gaiters','legs','false','light',1680,'bone','none',0,85,32,0,0,12700,0,'true'),
  38. (32,'Piece Bone Gaiters','legs','false','heavy',4020,'bone','none',0,85,39,0,0,19900,0,'true'),
  39. (33,'Hard Leather Gaiters','legs','false','light',1610,'leather','none',0,90,33,0,0,23000,0,'true'),
  40. (34,'Bronze Gaiters','legs','false','heavy',3960,'bronze','none',0,90,43,0,0,30700,0,'true'),
  41. (35,'Cloth Shoes','feet','false','none',1320,'cloth','none',0,90,9,0,0,37,0,'true'),
  42. (36,'Leather Sandals','feet','false','none',1320,'leather','none',0,90,9,0,0,37,0,'true'),
  43. (37,'Leather Shoes','feet','false','none',1320,'leather','none',0,90,13,0,0,2650,0,'true'),
  44. (38,'Low Boots','feet','false','none',1320,'leather','none',0,90,15,0,0,6770,0,'true'),
  45. (39,'Boots','feet','false','none',1310,'cloth','none',0,90,17,0,0,12300,0,'true'),
  46. (40,'Leather Boots','feet','true','none',1300,'leather','d',0,90,19,0,0,20900,38,'true'),
  47. (41,'Cloth Cap','head','false','none',660,'cloth','none',0,90,13,0,0,55,0,'true'),
  48. (42,'Leather Cap','head','false','none',660,'leather','none',0,90,16,0,0,911,0,'true'),
  49. (43,'Wooden Helmet','head','false','none',660,'wood','none',0,90,19,0,0,3980,0,'true'),
  50. (44,'Leather Helmet','head','false','none',650,'leather','none',0,90,23,0,0,10200,0,'true'),
  51. (45,'Bone Helmet','head','true','none',640,'bone','d',0,90,29,0,0,31300,56,'true'),
  52. (46,'Bronze Helmet','head','true','none',630,'bronze','d',0,90,33,0,0,50000,90,'true'),
  53. (47,'Helmet','head','true','none',640,'fine_steel','d',0,90,37,0,0,76200,138,'true'),
  54. (48,'Short Gloves','gloves','false','none',660,'cloth','none',0,90,9,0,0,37,0,'true'),
  55. (49,'Gloves','gloves','false','none',660,'cloth','none',0,90,13,0,0,2650,0,'true'),
  56. (50,'Leather Gloves','gloves','false','none',650,'leather','none',0,90,15,0,0,6770,0,'true'),
  57. (51,'Bracer','gloves','false','none',650,'leather','none',0,90,17,0,0,12300,0,'true'),
  58. (52,'Hemp Cloak','back','false','none',260,'cloth','none',0,90,2,0,0,37,0,'true'),
  59. (53,'Cotton Cloak','back','false','none',250,'cloth','none',0,90,3,0,0,607,0,'true'),
  60. (54,'Silk Cloak','back','false','none',250,'cloth','none',0,90,4,0,0,2650,0,'true'),
  61. (55,'Cotton Undergarment','underwear','false','none',170,'cotton','none',0,90,4,0,0,18,0,'true'),
  62. (56,'Wool Undergarment','underwear','false','none',170,'wood','none',0,90,5,0,0,304,0,'true'),
  63. (58,'Mithril Breastplate','chest','true','heavy',8670,'mithril','d',0,95,95,0,0,183000,332,'true'),
  64. (59,'Mithril Gaiters','legs','true','heavy',3830,'mithril','d',0,95,61,0,0,127000,230,'true'),
  65. (60,'Composite Armor','fullarmor','true','heavy',10980,'fine_steel','c',0,90,224,0,0,1440000,576,'true'),
  66. (61,'Mithril Gloves','gloves','true','none',630,'mithril','d',0,90,29,0,0,97800,177,'true'),
  67. (62,'Mithril Boots','feet','true','none',1230,'leather','c',0,90,32,0,0,45900,83,'true'),
  68. (63,'Gauntlets','gloves','true','none',640,'cloth','d',0,90,24,0,0,50800,92,'true'),
  69. (64,'Composite Boots','feet','true','none',1220,'fine_steel','c',0,90,36,0,0,245000,98,'true'),
  70. (112,'Apprentice\'s Earring','rear,lear','false','none',150,'silver','none',0,95,0,11,0,49,0,'true'),
  71. (113,'Mystic\'s Earring','rear,lear','false','none',150,'silver','none',0,95,0,13,0,811,0,'true'),
  72. (114,'Earring of Strength','rear,lear','false','none',150,'gold','none',0,95,0,16,0,3510,0,'true'),
  73. (115,'Earring of Wisdom','rear,lear','false','none',150,'gold','none',0,95,0,16,0,3510,0,'true'),
  74. (116,'Magic Ring','rfinger,lfinger','false','none',150,'gold','none',0,95,0,7,0,33,0,'true'),
  75. (117,'Ring of Mana','rfinger,lfinger','true','none',150,'silver','b',0,95,0,34,0,404000,53,'true'),
  76. (118,'Necklace of Magic','neck','false','none',150,'silver','none',0,95,0,15,0,66,0,'true'),
  77. (119,'Necklace of Binding','neck','true','none',150,'adamantaite','c',0,95,0,64,0,565000,226,'true'),
  78. (347,'Ring Mail Breastplate','chest','true','heavy',8820,'steel','d',0,90,77,0,0,83500,151,'true'),
  79. (348,'Scale Mail','chest','true','heavy',8720,'steel','d',0,90,87,0,0,133000,241,'true'),
  80. (349,'Compound Scale Mail','chest','true','heavy',8620,'fine_steel','d',0,98,95,0,0,183000,332,'true'),
  81. (350,'Dwarven Scale Mail','chest','true','heavy',8540,'fine_steel','d',0,98,95,0,0,183000,332,'true'),
  82. (351,'Blast Plate','chest','true','heavy',8420,'fine_steel','d',0,90,97,0,0,203000,369,'true'),
  83. (352,'Brigandine Tunic','chest','true','heavy',8320,'fine_steel','d',0,90,103,0,0,299000,543,'true'),
  84. (353,'Half Plate Armor','chest','true','heavy',8220,'fine_steel','d',0,90,111,0,0,391000,710,'true'),
  85. (354,'Chain Mail Shirt','chest','true','heavy',8120,'fine_steel','c',0,90,120,0,0,505000,202,'true'),
  86. (355,'Dwarven Chain Mail Shirt','chest','true','heavy',8070,'fine_steel','c',0,98,129,0,0,644000,257,'true'),
  87. (356,'Full Plate Armor','fullarmor','true','heavy',10480,'fine_steel','c',0,90,239,0,0,2090000,836,'true'),
  88. (357,'Zubei\'s Breastplate','chest','true','heavy',7970,'mithril','b',0,90,157,0,0,2080000,277,'true'),
  89. (358,'Blue Wolf Breastplate','chest','true','heavy',7820,'oriharukon','b',0,90,166,0,0,3220000,429,'true'),
  90. (359,'Shining Dragon Armor','fullarmor','true','heavy',6400,'mithril','b',0,90,301,0,0,6770000,902,'true'),
  91. (360,'Armor of Victory','chest','true','heavy',3360,'oriharukon','b',0,90,175,0,0,3220000,429,'true'),
  92. (361,'Breastplate of Valor','chest','true','heavy',3360,'blood_steel','b',0,90,185,0,0,4630000,617,'true'),
  93. (362,'Glorious Armor','fullarmor','true','heavy',6720,'fine_steel','b',0,90,284,0,0,4710000,628,'true'),
  94. (363,'Red Flame Armor','fullarmor','true','heavy',6400,'blood_steel','b',0,90,301,0,0,6770000,902,'true'),
  95. (364,'Elven Crystal Breastplate','chest','true','heavy',2400,'crystal','b',0,95,175,0,0,3220000,429,'true'),
  96. (365,'Dark Crystal Breastplate','chest','true','heavy',7700,'crystal','a',0,95,171,0,0,4630000,617,'true'),
  97. (366,'Implosion Armor','fullarmor','true','heavy',6080,'damascus','b',0,90,284,0,0,4710000,628,'true'),
  98. (367,'Dark Dragon Armor','fullarmor','true','heavy',5760,'damascus','b',0,90,301,0,0,6770000,902,'true'),
  99. (368,'Elven Vagian Armor','fullarmor','true','heavy',2400,'mithril','b',0,95,284,0,0,4710000,628,'true'),
  100. (369,'Dark Vagian Armor','fullarmor','true','heavy',2400,'mithril','b',0,95,301,0,0,6770000,902,'true'),
  101. (370,'Complete Set of Plate Armor','fullarmor','true','heavy',6400,'fine_steel','b',0,98,284,0,0,4710000,628,'true'),
  102. (371,'Hell Plate','fullarmor','true','heavy',6400,'blood_steel','b',0,100,301,0,0,6770000,902,'true'),
  103. (372,'Art of Plate','fullarmor','true','heavy',6720,'chrysolite','b',0,98,284,0,0,4710000,628,'true'),
  104. (373,'Masterpiece Armor','fullarmor','true','heavy',5600,'oriharukon','b',0,100,301,0,0,6770000,902,'true'),
  105. (374,'Armor of Nightmare','fullarmor','true','heavy',9580,'blood_steel','a',0,90,293,0,0,10300000,824,'true'),
  106. (375,'Dragon Scale Mail','chest','true','heavy',7620,'scale_of_dragon','s',0,100,198,0,0,10500000,525,'true'),
  107. (376,'Iron Plate Gaiters','legs','true','heavy',3820,'steel','d',0,90,48,0,0,52200,94,'true'),
  108. (377,'Scale Gaiters','legs','true','heavy',3860,'fine_steel','d',0,90,54,0,0,83300,151,'true'),
  109. (378,'Compound Scale Gaiters','legs','true','heavy',3770,'fine_steel','d',0,98,61,0,0,127000,230,'true'),
  110. (379,'Dwarven Scale Gaiters','legs','true','heavy',3840,'fine_steel','d',0,98,61,0,0,127000,230,'true'),
  111. (380,'Plate Gaiters','legs','true','heavy',3770,'fine_steel','d',0,90,70,0,0,244000,443,'true'),
  112. (381,'Chain Gaiters','legs','true','heavy',3680,'fine_steel','c',0,90,75,0,0,316000,126,'true'),
  113. (382,'Dwarven Chain Gaiters','legs','true','heavy',3620,'fine_steel','c',0,98,80,0,0,403000,161,'true'),
  114. (383,'Zubei\'s Gaiters','legs','true','heavy',3570,'mithril','b',0,90,98,0,0,1300000,173,'true'),
  115. (384,'Wolf Gaiters','legs','true','heavy',2560,'oriharukon','b',0,90,109,0,0,2010000,268,'true'),
  116. (385,'Gaiters of Victory','legs','true','heavy',2240,'oriharukon','b',0,90,109,0,0,2010000,268,'true'),
  117. (386,'Gaiters of Valor','legs','true','heavy',2240,'blood_steel','b',0,90,116,0,0,2890000,385,'true'),
  118. (387,'Elven Crystal Gaiters','legs','true','heavy',2240,'crystal','b',0,95,109,0,0,2010000,268,'true'),
  119. (388,'Dark Crystal Gaiters','legs','true','heavy',3320,'crystal','a',0,95,107,0,0,2890000,385,'true'),
  120. (389,'Dragon Scale Gaiters','legs','true','heavy',3260,'scale_of_dragon','s',0,100,122,0,0,5980000,299,'true'),
  121. (390,'Cotton Shirt','chest','false','light',4770,'cloth','none',0,90,50,0,0,20300,0,'true'),
  122. (391,'Puma Skin Shirt','chest','true','light',4700,'leather','d',0,90,58,0,0,62600,113,'true'),
  123. (392,'Lion Skin Shirt','chest','true','light',4580,'leather','d',0,90,65,0,0,99900,181,'true'),
  124. (393,'Mithril Banded Mail','chest','true','light',4570,'mithril','d',0,90,73,0,0,152000,276,'true'),
  125. (394,'Reinforced Leather Shirt','chest','true','light',4570,'leather','d',0,90,73,0,0,152000,276,'true'),
  126. (395,'Manticore Skin Shirt','chest','true','light',4520,'leather','d',0,90,77,0,0,224000,407,'true'),
  127. (396,'Salamander Skin Mail','fullarmor','true','light',6100,'leather','d',0,90,136,0,0,429000,780,'true'),
  128. (397,'Mithril Shirt','chest','true','light',4470,'mithril','c',0,98,90,0,0,379000,151,'true'),
  129. (398,'Plated Leather','chest','true','light',4450,'leather','c',0,90,94,0,0,446000,178,'true'),
  130. (399,'Rind Leather Armor','chest','true','light',4420,'leather','c',0,90,97,0,0,483000,193,'true'),
  131. (400,'Theca Leather Armor','chest','true','light',4370,'leather','c',0,90,106,0,0,825000,330,'true'),
  132. (401,'Drake Leather Armor','fullarmor','true','light',5800,'leather','c',0,90,179,0,0,1570000,628,'true'),
  133. (402,'Chain Mail of Silence','fullarmor','true','light',3200,'damascus','b',0,90,213,0,0,3530000,470,'true'),
  134. (403,'Gust Chain Mail','fullarmor','true','light',2720,'blood_steel','b',0,90,225,0,0,5080000,677,'true'),
  135. (404,'Prairie Leather Armor','chest','true','light',8000,'leather','b',0,95,131,0,0,2410000,321,'true'),
  136. (405,'Leather Armor of The Underworld','chest','true','light',8000,'leather','b',0,95,139,0,0,3470000,462,'true'),
  137. (406,'Leather Suit of Concentration','fullarmor','true','light',2400,'leather','b',0,90,213,0,0,3530000,470,'true'),
  138. (407,'Ace\'s Leather Armor','fullarmor','true','light',2400,'leather','b',0,90,225,0,0,5080000,677,'true'),
  139. (408,'Guardian\'s Leather Armor','chest','true','light',8000,'leather','b',0,95,131,0,0,2410000,321,'true'),
  140. (409,'Marksman\'s Leather Armor','chest','true','light',4300,'leather','b',0,95,139,0,0,3470000,462,'true'),
  141. (410,'Unicorn Leather Armor','fullarmor','true','light',1280,'leather','a',0,90,238,0,0,7730000,618,'true'),
  142. (411,'Dragon Leather Armor','fullarmor','true','light',4950,'leather','s',0,100,237,0,0,10500000,525,'true'),
  143. (412,'Cotton Pants','legs','false','light',1630,'cloth','none',0,90,32,0,0,12700,0,'true'),
  144. (413,'Puma Skin Gaiters','legs','true','light',1600,'leather','d',0,90,36,0,0,39100,71,'true'),
  145. (414,'Lion Skin Gaiters','legs','true','light',1570,'leather','d',0,90,41,0,0,62500,113,'true'),
  146. (415,'Mithril Banded Gaiters','legs','true','light',1580,'mithril','d',0,98,46,0,0,95200,173,'true'),
  147. (416,'Reinforced Leather Gaiters','legs','true','light',1570,'leather','d',0,90,46,0,0,95200,173,'true'),
  148. (417,'Manticore Skin Gaiters','legs','true','light',1550,'leather','d',0,90,48,0,0,140000,254,'true'),
  149. (418,'Plated Leather Gaiters','legs','true','light',1560,'leather','c',0,90,59,0,0,279000,111,'true'),
  150. (419,'Rind Leather Gaiters','legs','true','light',1550,'leather','c',0,90,60,0,0,302000,120,'true'),
  151. (420,'Theca Leather Gaiters','legs','true','light',1530,'leather','c',0,90,66,0,0,516000,206,'true'),
  152. (421,'Prairie Leather Gaiters','legs','true','light',4800,'leather','b',0,95,82,0,0,1510000,201,'true'),
  153. (422,'Gaiters of The Underworld','legs','true','light',4800,'leather','b',0,95,87,0,0,2170000,289,'true'),
  154. (423,'Guardian\'s Leather Gaiters','legs','true','light',4800,'leather','b',0,95,82,0,0,1510000,201,'true'),
  155. (424,'Marksman\'s Leather Gaiters','legs','true','light',1490,'leather','b',0,95,87,0,0,2170000,289,'true'),
  156. (425,'Apprentice\'s Tunic','chest','false','magic',2150,'cloth','none',0,90,17,0,19,26,0,'false'),
  157. (426,'Tunic','chest','false','magic',2150,'cloth','none',0,90,18,0,24,147,0,'true'),
  158. (427,'Cotton Robe','fullarmor','false','magic',2750,'cotton','none',0,90,35,0,61,3550,0,'true'),
  159. (428,'Feriotic Tunic','chest','false','magic',2140,'cloth','none',0,90,21,0,38,2430,0,'true'),
  160. (429,'Leather Tunic','chest','false','magic',2110,'leather','none',0,90,25,0,52,7960,0,'true'),
  161. (430,'Robe of Devotion','fullarmor','false','magic',2650,'cloth','none',0,90,49,0,109,29700,0,'true'),
  162. (431,'Robe of Magic','fullarmor','false','magic',2600,'cloth','none',0,90,56,0,140,53900,0,'true'),
  163. (432,'Cursed Tunic','chest','true','magic',2090,'cloth','d',0,90,39,0,106,62600,113,'true'),
  164. (433,'Elven Tunic','chest','true','magic',2080,'cloth','d',0,95,43,0,126,99900,181,'true'),
  165. (434,'White Tunic','chest','true','magic',2040,'cloth','d',0,90,43,0,126,99900,181,'true'),
  166. (435,'Mystic\'s Tunic','chest','true','magic',2030,'cloth','d',0,90,43,0,126,99900,181,'true'),
  167. (436,'Tunic of Knowledge','chest','true','magic',2020,'cloth','d',0,90,49,0,147,152000,276,'true'),
  168. (437,'Mithril Tunic','chest','true','magic',2010,'mithril','d',0,98,52,0,169,224000,407,'true'),
  169. (438,'Sage\'s Rag','fullarmor','true','magic',2580,'cloth','d',0,90,90,0,320,429000,780,'true'),
  170. (439,'Karmian Tunic','chest','true','magic',1980,'cloth','c',0,90,60,0,225,379000,151,'true'),
  171. (440,'Robe of Seal','fullarmor','true','magic',2500,'cloth','c',0,90,105,0,413,707000,282,'true'),
  172. (441,'Demon\'s Tunic','chest','true','magic',1990,'cloth','c',0,90,69,0,284,736000,294,'true'),
  173. (442,'Divine Tunic','chest','true','magic',1980,'cloth','c',0,90,74,0,314,1070000,428,'true'),
  174. (443,'Tunic of Mana','chest','true','magic',2000,'cloth','b',0,90,87,0,377,2410000,321,'true'),
  175. (444,'Sage\'s Robe','fullarmor','true','magic',1600,'cloth','b',0,90,150,0,665,5080000,677,'true'),
  176. (445,'Paradia Tunic','chest','true','magic',1990,'cloth','b',0,98,87,0,377,2410000,321,'true'),
  177. (446,'Inferno Tunic','chest','true','magic',1880,'cloth','b',0,98,92,0,409,3470000,462,'true'),
  178. (447,'Tunic of Solar Eclipse','chest','true','magic',1960,'cloth','b',0,90,87,0,377,2410000,321,'true'),
  179. (448,'Robe of Black Ore','fullarmor','true','magic',1600,'cloth','b',0,90,150,0,665,5080000,677,'true'),
  180. (449,'Tunic of Summoning','chest','true','magic',1950,'cloth','b',0,90,87,0,377,2410000,321,'true'),
  181. (450,'Otherworldly Robe','fullarmor','true','magic',1600,'cloth','b',0,90,150,0,665,5080000,677,'true'),
  182. (451,'Elemental Tunic','chest','true','magic',1970,'cloth','b',0,98,87,0,377,2410000,321,'true'),
  183. (452,'Tunic of Phantom','chest','true','magic',1890,'cloth','b',0,98,92,0,409,3470000,462,'true'),
  184. (453,'Tunic of Grace','chest','true','magic',1930,'cloth','b',0,90,87,0,377,2410000,321,'true'),
  185. (454,'Robe of Holy Spirit','fullarmor','true','magic',1600,'cloth','b',0,90,150,0,665,5080000,677,'true'),
  186. (455,'Phoenix Tunic','chest','true','magic',1950,'cloth','b',0,90,87,0,377,2410000,321,'true'),
  187. (456,'Cerberus Tunic','chest','true','magic',1870,'cloth','b',0,90,92,0,409,3470000,462,'true'),
  188. (457,'Tunic of Aid','chest','true','magic',1910,'cloth','b',0,90,87,0,377,2410000,321,'true'),
  189. (458,'Robe of Blessing','fullarmor','true','magic',1600,'cloth','b',0,90,150,0,665,5080000,677,'true'),
  190. (459,'Dasparion\'s Robe','fullarmor','true','magic',1200,'cloth','a',0,95,158,0,718,7730000,618,'true'),
  191. (460,'The Robe','fullarmor','true','magic',2300,'cloth','s',0,100,158,0,773,10500000,525,'true'),
  192. (461,'Apprentice\'s Stockings','legs','false','magic',1100,'cloth','none',0,90,10,0,10,6,0,'false'),
  193. (462,'Stockings','legs','false','magic',1080,'cloth','none',0,90,11,0,15,92,0,'true'),
  194. (463,'Feriotic Stockings','legs','false','magic',1070,'cloth','none',0,90,13,0,23,1520,0,'true'),
  195. (464,'Leather Stockings','legs','false','magic',1020,'leather','none',0,90,16,0,33,4970,0,'true'),
  196. (465,'Cursed Stockings','legs','true','magic',1020,'cloth','d',0,90,24,0,66,39100,71,'true'),
  197. (466,'Elven Stockings','legs','true','magic',1010,'cloth','d',0,95,27,0,79,62500,113,'true'),
  198. (467,'Dark Stockings','legs','true','magic',1000,'cloth','d',0,90,27,0,79,62500,113,'true'),
  199. (468,'Mystic\'s Stockings','legs','true','magic',990,'cloth','d',0,90,27,0,79,62500,113,'true'),
  200. (469,'Stockings of Knowledge','legs','true','magic',1000,'cloth','d',0,90,30,0,92,95200,173,'true'),
  201. (470,'Mithril Stockings','legs','true','magic',980,'mithril','d',0,98,32,0,105,140000,254,'true'),
  202. (471,'Karmian Stockings','legs','true','magic',970,'cloth','c',0,90,37,0,141,237000,94,'true'),
  203. (472,'Demon\'s Stockings','legs','true','magic',980,'cloth','c',0,90,43,0,177,460000,184,'true'),
  204. (473,'Divine Stockings','legs','true','magic',960,'cloth','c',0,90,46,0,196,671000,268,'true'),
  205. (474,'Stockings of Mana','legs','true','magic',2400,'cloth','b',0,90,55,0,236,1510000,201,'true'),
  206. (475,'Paradia Stockings','legs','true','magic',1600,'cloth','b',0,98,55,0,236,1510000,201,'true'),
  207. (476,'Inferno Stockings','legs','true','magic',1600,'cloth','b',0,98,58,0,256,2170000,289,'true'),
  208. (477,'Stockings of Solar Eclipse','legs','true','magic',2400,'cloth','b',0,90,55,0,236,1510000,201,'true'),
  209. (478,'Stockings of Summoning','legs','true','magic',2400,'cloth','b',0,90,55,0,236,1510000,201,'true'),
  210. (479,'Elemental Stockings','legs','true','magic',1600,'cloth','b',0,98,55,0,236,1510000,201,'true'),
  211. (480,'Stockings of Phantom','legs','true','magic',1600,'cloth','b',0,98,58,0,256,2170000,289,'true'),
  212. (481,'Stockings of Grace','legs','true','magic',2400,'cloth','b',0,90,55,0,236,1510000,201,'true'),
  213. (482,'Phoenix Stockings','legs','true','magic',2400,'cloth','b',0,90,55,0,236,1510000,201,'true'),
  214. (483,'Cerberus Stockings','legs','true','magic',6400,'cloth','b',0,90,58,0,256,2170000,289,'true'),
  215. (484,'Stockings of Aid','legs','true','magic',2400,'cloth','b',0,90,55,0,236,1510000,201,'true'),
  216. (485,'Tattoo of Power','underwear','false','none',4200,'dyestuff','none',0,90,53,0,0,36900,0,'true'),
  217. (486,'Tattoo of Fire','underwear','true','none',4050,'dyestuff','d',0,90,73,0,0,152000,276,'true'),
  218. (487,'Tattoo of Resolve','underwear','true','none',4000,'dyestuff','d',0,90,73,0,0,152000,276,'true'),
  219. (488,'Tattoo of Flame','underwear','true','none',800,'dyestuff','b',0,90,139,0,0,3470000,462,'true'),
  220. (489,'Tattoo of Bravery','underwear','true','none',4100,'dyestuff','c',0,90,110,0,0,1070000,428,'true'),
  221. (490,'Tattoo of Blood','underwear','true','none',3800,'dyestuff','a',0,90,132,0,0,3470000,462,'true'),
  222. (491,'Tattoo of Absolute','underwear','true','none',800,'dyestuff','a',0,90,146,0,0,5280000,422,'true'),
  223. (492,'Tattoo of Soul','underwear','true','none',4150,'dyestuff','d',0,90,65,0,0,99900,181,'true'),
  224. (493,'Tattoo of Avadon','underwear','true','none',4000,'dyestuff','b',0,90,117,0,0,1560000,208,'true'),
  225. (494,'Tattoo of Doom','underwear','true','none',4100,'dyestuff','b',0,90,125,0,0,2410000,321,'true'),
  226. (495,'Tattoo of Pledge','underwear','true','none',4000,'dyestuff','b',0,90,124,0,0,1560000,208,'true'),
  227. (496,'Tattoo of Divine','underwear','true','none',4100,'dyestuff','b',0,90,131,0,0,2410000,321,'true'),
  228. (497,'Chain Helmet','head','true','none',620,'fine_steel','c',0,90,45,0,0,147000,59,'true'),
  229. (498,'Steel Plate Helmet','head','true','none',610,'fine_steel','c',0,90,49,0,0,206000,82,'true'),
  230. (499,'Mithril Helmet','head','true','none',240,'mithril','c',0,90,58,0,0,536000,214,'true'),
  231. (500,'Great Helmet','head','true','none',610,'fine_steel','c',0,90,51,0,0,242000,96,'true'),
  232. (501,'Armet','head','true','none',580,'chrysolite','b',0,90,62,0,0,1030000,4,'true'),
  233. (502,'Close Helmet','head','true','none',570,'oriharukon','a',0,90,64,0,0,1560000,232,'true'),
  234. (503,'Zubei\'s Helmet','head','true','none',590,'mithril','b',0,90,62,0,0,778000,103,'true'),
  235. (504,'Dragon Helmet','head','true','none',550,'bone','s',0,90,77,0,0,3590000,179,'true'),
  236. (505,'Wolf Helmet','head','true','none',580,'oriharukon','b',0,90,66,0,0,1210000,161,'true'),
  237. (506,'Shining Dragon Helmet','head','true','none',880,'mithril','b',0,90,67,0,0,1740000,232,'true'),
  238. (507,'Helmet of Victory','head','true','none',640,'oriharukon','b',0,90,66,0,0,1210000,161,'true'),
  239. (508,'Helmet of Valor','head','true','none',720,'blood_steel','b',0,90,67,0,0,1740000,232,'true'),
  240. (509,'Glorious Helmet','head','true','none',800,'fine_steel','a',0,90,65,0,0,2040000,239,'true'),
  241. (510,'Red Flame Helmet','head','true','none',960,'blood_steel','a',0,90,71,0,0,2640000,245,'true'),
  242. (511,'Elven Crystal Helmet','head','true','none',580,'crystal','b',0,90,66,0,0,1210000,161,'true'),
  243. (512,'Dark Crystal Helmet','head','true','none',570,'crystal','a',0,90,69,0,0,1740000,232,'true'),
  244. (513,'Implosion Helmet','head','true','none',480,'damascus','b',0,90,66,0,0,1210000,161,'true'),
  245. (514,'Dark Dragon Helmet','head','true','none',400,'damascus','b',0,90,67,0,0,1740000,232,'true'),
  246. (515,'Elven Vagian Helm','head','true','none',560,'mithril','a',0,90,65,0,0,2040000,239,'true'),
  247. (516,'Dark Vagian Helm','head','true','none',560,'mithril','a',0,90,71,0,0,2640000,245,'true'),
  248. (517,'Composite Helmet','head','true','none',610,'fine_steel','c',0,90,54,0,0,368000,147,'true'),
  249. (518,'Hell Helm','head','true','none',320,'blood_steel','a',0,90,71,0,0,2640000,245,'true'),
  250. (519,'Art of Helmet','head','true','none',400,'chrysolite','b',0,90,66,0,0,1210000,161,'true'),
  251. (520,'Masterpiece Helm','head','true','none',400,'oriharukon','a',0,90,71,0,0,2640000,245,'true'),
  252. (521,'Helmet of Silence','head','true','none',320,'damascus','b',0,90,66,0,0,1210000,161,'true'),
  253. (522,'Gust Helmet','head','true','none',570,'blood_steel','b',0,90,67,0,0,1740000,232,'true'),
  254. (523,'Prairie Helmet','head','true','none',480,'leather','b',0,90,66,0,0,1210000,161,'true'),
  255. (524,'Helm of The Underworld','head','true','none',320,'damascus','b',0,90,67,0,0,1740000,232,'true'),
  256. (525,'Helmet of Concentration','head','true','none',320,'oriharukon','b',0,90,66,0,0,1210000,161,'true'),
  257. (526,'Ace\'s Helmet','head','true','none',320,'oriharukon','b',0,90,67,0,0,1740000,232,'true'),
  258. (527,'Guardian\'s Helmet','head','true','none',240,'mithril','b',0,90,66,0,0,1210000,161,'true'),
  259. (528,'Marksman Helmet','head','true','none',240,'leather','b',0,90,67,0,0,1740000,232,'true'),
  260. (529,'Cap of Mana','head','true','none',320,'cloth','c',0,90,58,0,0,536000,214,'true'),
  261. (530,'Sage\'s Cap','head','true','none',320,'cloth','b',0,90,62,0,0,778000,103,'true'),
  262. (531,'Paradia Hood','head','true','none',320,'cloth','c',0,90,58,0,0,536000,214,'true'),
  263. (532,'Inferno Hood','head','true','none',320,'cloth','b',0,90,62,0,0,778000,103,'true'),
  264. (533,'Hood of Solar Eclipse','head','true','none',320,'cloth','c',0,90,58,0,0,536000,214,'true'),
  265. (534,'Hood of Black Ore','head','true','none',320,'cloth','b',0,90,62,0,0,778000,103,'true'),
  266. (535,'Hood of Summoning','head','true','none',320,'cloth','c',0,90,58,0,0,536000,214,'true'),
  267. (536,'Otherworldly Hood','head','true','none',320,'cloth','b',0,90,62,0,0,778000,103,'true'),
  268. (537,'Elemental Hood','head','true','none',320,'cloth','c',0,90,58,0,0,536000,214,'true'),
  269. (538,'Hood of Phantom','head','true','none',320,'cloth','b',0,90,62,0,0,778000,103,'true'),
  270. (539,'Hood of Grace','head','true','none',320,'cloth','c',0,90,58,0,0,536000,214,'true'),
  271. (540,'Hood of Holy Spirit','head','true','none',320,'cloth','b',0,90,62,0,0,778000,103,'true'),
  272. (541,'Phoenix Hood','head','true','none',590,'cloth','c',0,90,58,0,0,536000,214,'true'),
  273. (542,'Cerberus Hood','head','true','none',320,'cloth','b',0,90,62,0,0,778000,103,'true'),
  274. (543,'Hood of Aid','head','true','none',320,'cloth','c',0,90,58,0,0,536000,214,'true'),
  275. (544,'Hood of Blessing','head','true','none',320,'cloth','b',0,90,62,0,0,778000,103,'true'),
  276. (545,'Flame Helm','head','true','none',400,'cloth','c',0,90,58,0,0,536000,214,'true'),
  277. (546,'Helm of Bravery','head','true','none',400,'cloth','b',0,90,62,0,0,778000,103,'true'),
  278. (547,'Tallum Helm','head','true','none',570,'cloth','a',0,90,69,0,0,1740000,232,'true'),
  279. (548,'Absolute Helm','head','true','none',400,'cloth','b',0,90,62,0,0,778000,103,'true'),
  280. (549,'Helm of Avadon','head','true','none',400,'cloth','c',0,90,58,0,0,536000,214,'true'),
  281. (550,'Helm of Doom','head','true','none',400,'cloth','b',0,90,62,0,0,778000,103,'true'),
  282. (551,'Helmet of Pledge','head','true','none',400,'chrysolite','c',0,90,58,0,0,536000,214,'true'),
  283. (552,'Divine Helm','head','true','none',400,'cloth','b',0,90,62,0,0,778000,103,'true'),
  284. (553,'Iron Boots','feet','true','none',1280,'fine_steel','d',0,90,24,0,0,50800,92,'true'),
  285. (554,'Zubei\'s Boots','feet','true','none',1180,'mithril','b',0,90,41,0,0,519000,69,'true'),
  286. (555,'Dragon Boots','feet','true','none',1110,'leather','a',0,90,48,0,0,1760000,140,'true'),
  287. (556,'Wolf Boots','feet','true','none',1180,'oriharukon','b',0,90,41,0,0,519000,69,'true'),
  288. (557,'Shining Dragon Boots','feet','true','none',1150,'mithril','b',0,90,44,0,0,804000,107,'true'),
  289. (558,'Boots of Victory','feet','true','none',1180,'oriharukon','b',0,90,41,0,0,519000,69,'true'),
  290. (559,'Boots of Valor','feet','true','none',1150,'blood_steel','b',0,90,44,0,0,804000,107,'true'),
  291. (560,'Glorious Boots','feet','true','none',1180,'fine_steel','b',0,90,41,0,0,519000,69,'true'),
  292. (561,'Red Flame Boots','feet','true','none',1120,'blood_steel','a',0,90,45,0,0,1160000,154,'true'),
  293. (562,'Elven Crystal Boots','feet','true','none',1180,'crystal','b',0,95,41,0,0,519000,69,'true'),
  294. (563,'Dark Crystal Boots','feet','true','none',1110,'crystal','a',0,95,45,0,0,1160000,154,'true'),
  295. (564,'Implosion Boots','feet','true','none',1150,'damascus','b',0,90,44,0,0,804000,107,'true'),
  296. (565,'Dark Dragon Boots','feet','true','none',1130,'damascus','b',0,90,44,0,0,804000,107,'true'),
  297. (566,'Elven Vagian Boots','feet','true','none',1150,'mithril','b',0,95,41,0,0,519000,69,'true'),
  298. (567,'Dark Vagian Boots','feet','true','none',1130,'mithril','b',0,95,44,0,0,804000,107,'true'),
  299. (568,'Composite Boots','feet','true','none',200,'fine_steel','b',0,90,41,0,0,519000,69,'true'),
  300. (569,'Hell Boots','feet','true','none',1130,'blood_steel','b',0,90,44,0,0,804000,107,'true'),
  301. (570,'Art of Boots','feet','true','none',1150,'chrysolite','b',0,90,41,0,0,519000,69,'true'),
  302. (571,'Masterpiece Boots','feet','true','none',1130,'oriharukon','b',0,90,44,0,0,804000,107,'true'),
  303. (572,'Boots of Silence','feet','true','none',1190,'damascus','b',0,90,41,0,0,519000,69,'true'),
  304. (573,'Gust Boots','feet','true','none',1120,'blood_steel','a',0,90,45,0,0,1160000,154,'true'),
  305. (574,'Prairie Boots','feet','true','none',1140,'leather','b',0,90,41,0,0,519000,69,'true'),
  306. (575,'Boots of The Underworld','feet','true','none',1110,'leather','a',0,90,45,0,0,1160000,154,'true'),
  307. (576,'Boots of Concentration','feet','true','none',1170,'oriharukon','b',0,90,41,0,0,519000,69,'true'),
  308. (577,'Ace\'s Boots','feet','true','none',1150,'oriharukon','b',0,90,44,0,0,804000,107,'true'),
  309. (578,'Guardian\'s Boots','feet','true','none',1180,'mithril','b',0,95,41,0,0,519000,69,'true'),
  310. (579,'Marksman Boots','feet','true','none',1150,'leather','b',0,95,44,0,0,804000,107,'true'),
  311. (580,'Boots of Mana','feet','true','none',1180,'leather','b',0,90,41,0,0,519000,69,'true'),
  312. (581,'Sage\'s Boots','feet','true','none',1150,'leather','b',0,90,44,0,0,804000,107,'true'),
  313. (582,'Paradia Boots','feet','true','none',1140,'chrysolite','b',0,95,44,0,0,804000,107,'true'),
  314. (583,'Majestic Boots','feet','true','none',1110,'blood_steel','a',0,95,48,0,0,1760000,140,'true'),
  315. (584,'Boots of Solar Eclipse','feet','true','none',1180,'blood_steel','b',0,90,41,0,0,519000,69,'true'),
  316. (585,'Boots of Black Ore','feet','true','none',1200,'damascus','b',0,90,44,0,0,804000,107,'true'),
  317. (586,'Boots of Summoning','feet','true','none',1170,'leather','b',0,90,41,0,0,519000,69,'true'),
  318. (587,'Otherworldly Boots','feet','true','none',1200,'adamantaite','b',0,90,44,0,0,804000,107,'true'),
  319. (588,'Elemental Boots','feet','true','none',1130,'mithril','b',0,95,44,0,0,804000,107,'true'),
  320. (589,'Boots of Phantom','feet','true','none',1120,'oriharukon','a',0,95,48,0,0,1760000,140,'true'),
  321. (590,'Boots of Grace','feet','true','none',1130,'mithril','b',0,90,44,0,0,804000,107,'true'),
  322. (591,'Boots of Holy Spirit','feet','true','none',1200,'chrysolite','b',0,90,44,0,0,804000,107,'true'),
  323. (592,'Phoenix Boots','feet','true','none',1120,'blood_steel','a',0,90,45,0,0,1160000,154,'true'),
  324. (593,'Cerberus Boots','feet','true','none',1120,'damascus','a',0,90,48,0,0,1760000,140,'true'),
  325. (594,'Boots of Aid','feet','true','none',1200,'leather','b',0,90,41,0,0,519000,69,'true'),
  326. (595,'Boots of Blessing','feet','true','none',1160,'adamantaite','b',0,90,41,0,0,519000,69,'true'),
  327. (596,'Flame Boots','feet','true','none',1020,'blood_steel','b',0,90,45,0,0,1160000,154,'true'),
  328. (597,'Boots of Bravery','feet','true','none',1050,'chrysolite','b',0,90,45,0,0,1160000,154,'true'),
  329. (598,'Blood Boots','feet','true','none',1130,'blood_steel','a',0,90,45,0,0,1160000,154,'true'),
  330. (599,'Absolute Boots','feet','true','none',1130,'mithril','b',0,90,45,0,0,1160000,154,'true'),
  331. (600,'Avadon Boots','feet','true','none',1170,'damascus','b',0,90,41,0,0,519000,69,'true'),
  332. (601,'Boots of Doom','feet','true','none',1130,'mithril','b',0,90,44,0,0,804000,107,'true'),
  333. (602,'Boots of Pledge','feet','true','none',1130,'chrysolite','b',0,90,45,0,0,1160000,154,'true'),
  334. (603,'Divine Boots','feet','true','none',1200,'adamantaite','c',0,90,39,0,0,358000,143,'true'),
  335. (604,'Excellent Leather Gloves','gloves','true','none',650,'leather','d',0,90,19,0,0,20900,38,'true'),
  336. (605,'Leather Gauntlets','gloves','true','none',640,'leather','d',0,90,22,0,0,33300,60,'true'),
  337. (606,'Rip Gauntlets','gloves','true','none',630,'leather','d',0,90,27,0,0,74700,135,'true'),
  338. (607,'Ogre Power Gauntlets','gloves','true','none',620,'fine_steel','d',0,90,29,0,0,97800,177,'true'),
  339. (608,'Mithril Gauntlets','gloves','true','none',600,'mithril','c',0,95,36,0,0,245000,98,'true'),
  340. (609,'Gauntlets of Ghost','gloves','true','none',1920,'blood_steel','c',0,90,39,0,0,358000,143,'true'),
  341. (610,'Saint Knight\'s Gauntlets','gloves','true','none',6400,'oriharukon','b',0,90,41,0,0,519000,69,'true'),
  342. (611,'Soul Leech Gauntlets','gloves','true','none',4800,'blood_steel','b',0,90,44,0,0,804000,107,'true'),
  343. (612,'Zubei\'s Gauntlets','gloves','true','none',590,'mithril','b',0,90,41,0,0,519000,69,'true'),
  344. (613,'Sand Dragon Gloves','gloves','true','none',3200,'damascus','a',0,90,48,0,0,1760000,140,'true'),
  345. (614,'Knight\'s Cloak','back','true','none',240,'cloth','d',0,90,7,0,0,20900,38,'true'),
  346. (615,'Cobweb Cloak','back','true','none',240,'cobweb','d',0,95,8,0,0,33300,60,'true'),
  347. (616,'Cloak of Magic','back','true','none',240,'cloth','d',0,90,11,0,0,74700,135,'true'),
  348. (617,'Mithril Cloak','back','true','none',240,'mithril','d',0,95,11,0,0,97800,177,'true'),
  349. (618,'Cloak of Self Protection','back','true','none',240,'cloth','c',0,90,13,0,0,161000,64,'true'),
  350. (619,'Ancient Cloak','back','true','none',230,'cloth','c',0,90,15,0,0,245000,98,'true'),
  351. (620,'Cloak of Protection','back','true','none',230,'cloth','c',0,90,16,0,0,358000,143,'true'),
  352. (621,'Cloak of Hell','back','true','none',220,'cloth','b',0,90,18,0,0,804000,107,'true'),
  353. (622,'Holy Spirit\'s Cloak','back','true','none',220,'cloth','a',0,90,18,0,0,1160000,154,'true'),
  354. (623,'Divine Cloak','back','true','none',220,'cloth','a',0,90,19,0,0,1760000,140,'true'),
  355. (624,'Cloak of Invisibility','back','false','none',260,'cloth','none',0,90,2,0,0,37,0,'true'),
  356. (675,'Silk Yarn Undergarment Set','underwear','false','none',170,'cloth','none',0,90,6,0,0,1330,0,'true'),
  357. (676,'Pure White Undergarment Set','underwear','false','none',160,'cloth','none',0,90,9,0,0,6150,0,'true'),
  358. (677,'One-Piece Swimsuit','underwear','true','none',150,'cloth','d',0,90,10,0,0,10400,18,'true'),
  359. (678,'Bikini Set','underwear','true','none',150,'cloth','d',0,90,11,0,0,16700,30,'true'),
  360. (679,'Cursed Undergarment Set','underwear','true','none',150,'cloth','d',0,90,12,0,0,25400,46,'true'),
  361. (680,'Mithril Undergarment Set','underwear','true','none',140,'mithril','c',0,97,16,0,0,63100,25,'true'),
  362. (681,'Fascination Undergarment Set','underwear','true','none',140,'cloth','c',0,90,17,0,0,80500,32,'true'),
  363. (682,'Demon\'s Undergarment Set','underwear','true','none',140,'cloth','c',0,90,19,0,0,179000,71,'true'),
  364. (683,'Holy Undergarment Set','underwear','true','none',140,'cloth','b',0,95,22,0,0,402000,53,'true'),
  365. (684,'Underwear of Rule','underwear','true','none',140,'cloth','a',0,90,24,0,0,880000,70,'true'),
  366. (685,'Crystal Swimsuit Set','underwear','true','none',130,'crystal','s',0,85,26,0,0,1310000,65,'true'),
  367. (845,'Cat\'s Eye Earring','rear,lear','false','none',150,'silver','none',0,95,0,19,0,8890,0,'true'),
  368. (846,'Coral Earring','rear,lear','false','none',150,'silver','none',0,95,0,21,0,16000,0,'true'),
  369. (847,'Red Crescent Earring','rear,lear','true','none',150,'silver','d',0,95,0,24,0,26900,48,'true'),
  370. (848,'Enchanted Earring','rear,lear','true','none',150,'silver','d',0,95,0,27,0,42600,77,'true'),
  371. (849,'Tiger\'s Eye Earring','rear,lear','true','none',150,'silver','d',0,95,0,30,0,64300,116,'true'),
  372. (850,'Elven Earring','rear,lear','true','none',150,'silver','d',0,95,0,34,0,93400,169,'true'),
  373. (851,'Omen Beast\'s Eye Earring','rear,lear','true','none',150,'silver','d',0,95,0,36,0,121000,220,'true'),
  374. (852,'Moonstone Earring','rear,lear','true','none',150,'silver','c',0,95,0,39,0,155000,62,'true'),
  375. (853,'Earring of Protection','rear,lear','true','none',150,'silver','c',0,95,0,42,0,196000,78,'true'),
  376. (854,'Earring of Binding','rear,lear','true','none',150,'silver','c',0,95,0,45,0,295000,118,'true'),
  377. (855,'Nassen\'s Earring','rear,lear','true','none',150,'silver','c',0,95,0,48,0,424000,169,'true'),
  378. (856,'Adamantite Earring','rear,lear','true','none',150,'silver','b',0,95,0,51,0,606000,80,'true'),
  379. (857,'Blessed Earring','rear,lear','true','none',150,'silver','c',0,95,0,48,0,424000,169,'true'),
  380. (858,'Tateossian Earring','rear,lear','true','none',150,'silver','s',0,95,0,71,31,2590000,129,'true'),
  381. (859,'Earring of Mana','rear,lear','true','none',150,'silver','b',0,95,0,51,0,606000,80,'true'),
  382. (860,'Sage\'s Earring','rear,lear','true','none',150,'silver','b',0,95,0,54,0,924000,123,'true'),
  383. (861,'Paradia Earring','rear,lear','true','none',150,'silver','b',0,95,0,54,0,924000,123,'true'),
  384. (862,'Majestic Earring','rear,lear','true','none',150,'silver','a',0,95,0,63,25,1950000,156,'true'),
  385. (863,'Earring of Solar Eclipse','rear,lear','true','none',150,'silver','b',0,95,0,51,0,606000,80,'true'),
  386. (864,'Earring of Black Ore','rear,lear','true','none',150,'silver','b',0,95,0,54,0,924000,123,'true'),
  387. (865,'Earring of Summoning','rear,lear','true','none',150,'silver','b',0,95,0,51,0,606000,80,'true'),
  388. (866,'Otherworldly Earring','rear,lear','true','none',150,'silver','b',0,95,0,54,0,924000,123,'true'),
  389. (867,'Elemental Earring','rear,lear','true','none',150,'silver','b',0,95,0,54,0,924000,123,'true'),
  390. (868,'Earring of Phantom','rear,lear','true','none',150,'silver','a',0,95,0,60,0,1950000,156,'true'),
  391. (869,'Earring of Grace','rear,lear','true','none',150,'silver','b',0,95,0,51,0,606000,80,'true'),
  392. (870,'Earring of Holy Spirit','rear,lear','true','none',150,'silver','b',0,95,0,54,0,924000,123,'true'),
  393. (871,'Phoenix Earring','rear,lear','true','none',150,'silver','a',0,95,0,60,20,1310000,105,'true'),
  394. (872,'Cerberus Earring','rear,lear','true','none',150,'silver','a',0,95,0,60,0,1950000,156,'true'),
  395. (873,'Earring of Aid','rear,lear','true','none',150,'silver','b',0,95,0,51,0,606000,80,'true'),
  396. (874,'Earring of Blessing','rear,lear','true','none',150,'silver','b',0,95,0,51,0,606000,80,'true'),
  397. (875,'Ring of Knowledge','rfinger,lfinger','false','none',150,'gold','none',0,95,0,9,0,540,0,'true'),
  398. (876,'Ring of Anguish','rfinger,lfinger','false','none',150,'gold','none',0,95,0,11,0,2340,0,'true'),
  399. (877,'Ring of Wisdom','rfinger,lfinger','false','none',150,'gold','none',0,95,0,12,0,5920,0,'true'),
  400. (878,'Blue Coral Ring','rfinger,lfinger','false','none',150,'gold','none',0,95,0,14,0,10700,0,'true'),
  401. (879,'Enchanted Ring','rfinger,lfinger','true','none',150,'gold','d',0,95,0,18,0,28400,51,'true'),
  402. (880,'Black Pearl Ring','rfinger,lfinger','true','none',150,'gold','d',0,95,0,20,0,42800,77,'true'),
  403. (881,'Elven Ring','rfinger,lfinger','true','none',150,'gold','d',0,95,0,22,0,62300,113,'true'),
  404. (882,'Mithril Ring','rfinger,lfinger','true','none',150,'gold','d',0,95,0,24,0,80800,146,'true'),
  405. (883,'Aquastone Ring','rfinger,lfinger','true','none',150,'gold','c',0,95,0,26,0,103000,41,'true'),
  406. (884,'Ring of Protection','rfinger,lfinger','true','none',150,'gold','c',0,95,0,28,0,130000,52,'true'),
  407. (885,'Ring of Ages','rfinger,lfinger','true','none',150,'gold','c',0,95,0,30,0,196000,78,'true'),
  408. (886,'Ring of Binding','rfinger,lfinger','true','none',150,'gold','c',0,95,0,32,0,282000,112,'true'),
  409. (887,'Adamantite Ring','rfinger,lfinger','true','none',150,'gold','b',0,95,0,34,0,404000,53,'true'),
  410. (888,'Blessed Ring','rfinger,lfinger','true','none',150,'gold','c',0,95,0,32,0,282000,112,'true'),
  411. (889,'Tateossian Ring','rfinger,lfinger','true','none',150,'gold','s',0,95,0,48,21,1730000,86,'true'),
  412. (890,'Ring of Devotion','rfinger,lfinger','true','none',150,'gold','d',0,95,0,16,0,18000,32,'true'),
  413. (891,'Sage\'s Ring','rfinger,lfinger','true','none',150,'gold','b',0,95,0,36,0,616000,82,'true'),
  414. (892,'Paradia Ring','rfinger,lfinger','true','none',150,'gold','b',0,95,0,36,0,616000,82,'true'),
  415. (893,'Majestic Ring','rfinger,lfinger','true','none',150,'gold','a',0,95,0,42,17,1300000,104,'true'),
  416. (894,'Ring of Solar Eclipse','rfinger,lfinger','true','none',150,'gold','b',0,95,0,34,0,404000,53,'true'),
  417. (895,'Ring of Black Ore','rfinger,lfinger','true','none',150,'gold','b',0,95,0,36,0,616000,82,'true'),
  418. (896,'Ring of Summoning','rfinger,lfinger','true','none',150,'gold','b',0,95,0,34,0,404000,53,'true'),
  419. (897,'Otherworldly Ring','rfinger,lfinger','true','none',150,'gold','b',0,95,0,36,0,616000,82,'true'),
  420. (898,'Elemental Ring','rfinger,lfinger','true','none',150,'gold','b',0,95,0,36,0,616000,82,'true'),
  421. (899,'Ring of Phantom','rfinger,lfinger','true','none',150,'gold','a',0,95,0,40,0,1300000,104,'true'),
  422. (900,'Ring of Grace','rfinger,lfinger','true','none',150,'gold','b',0,95,0,34,0,404000,53,'true'),
  423. (901,'Ring of Holy Spirit','rfinger,lfinger','true','none',150,'gold','b',0,95,0,36,0,616000,82,'true'),
  424. (902,'Phoenix Ring','rfinger,lfinger','true','none',150,'gold','a',0,95,0,40,13,871000,70,'true'),
  425. (903,'Cerberus Ring','rfinger,lfinger','true','none',150,'gold','a',0,95,0,40,0,1300000,104,'true'),
  426. (904,'Ring of Aid','rfinger,lfinger','true','none',150,'gold','b',0,95,0,34,0,404000,53,'true'),
  427. (905,'Ring of Blessing','rfinger,lfinger','true','none',150,'gold','b',0,95,0,34,0,404000,53,'true'),
  428. (906,'Necklace of Knowledge','neck','false','none',150,'silver','none',0,95,0,18,0,1080,0,'true'),
  429. (907,'Necklace of Anguish','neck','false','none',150,'silver','none',0,95,0,21,0,4680,0,'true'),
  430. (908,'Necklace of Wisdom','neck','false','none',150,'silver','none',0,95,0,25,0,11900,0,'true'),
  431. (909,'Blue Diamond Necklace','neck','false','none',150,'silver','none',0,95,0,28,0,21300,0,'true'),
  432. (910,'Necklace of Devotion','neck','true','none',150,'silver','d',0,95,0,32,0,35900,65,'true'),
  433. (911,'Enchanted Necklace','neck','true','none',150,'silver','d',0,95,0,36,0,56800,103,'true'),
  434. (912,'Near Forest Necklace','neck','true','none',150,'silver','d',0,95,0,40,0,85700,155,'true'),
  435. (913,'Elven Necklace','neck','true','none',150,'silver','d',0,95,0,45,0,125000,227,'true'),
  436. (914,'Necklace of Darkness','neck','true','none',150,'silver','d',0,95,0,48,0,162000,294,'true'),
  437. (915,'Aquastone Necklace','neck','true','none',150,'silver','c',0,95,0,52,0,207000,82,'true'),
  438. (916,'Necklace of Protection','neck','true','none',150,'silver','c',0,95,0,56,0,261000,104,'true'),
  439. (917,'Necklace of Mermaid','neck','true','none',150,'silver','c',0,95,0,60,0,393000,157,'true'),
  440. (918,'Adamantite Necklace','neck','true','none',150,'silver','b',0,95,0,68,0,808000,107,'true'),
  441. (919,'Blessed Necklace','neck','true','none',150,'silver','c',0,95,0,64,0,565000,226,'true'),
  442. (920,'Tateossian Necklace','neck','true','none',150,'silver','s',0,95,0,95,42,3450000,172,'true'),
  443. (921,'Necklace of Mana','neck','true','none',150,'silver','b',0,95,0,68,0,808000,107,'true'),
  444. (922,'Sage\'s Necklace','neck','true','none',150,'silver','b',0,95,0,72,0,1230000,164,'true'),
  445. (923,'Paradia Necklace','neck','true','none',150,'silver','b',0,95,0,72,0,1230000,164,'true'),
  446. (924,'Majestic Necklace','neck','true','none',150,'silver','a',0,95,0,85,33,2600000,208,'true'),
  447. (925,'Necklace of Solar Eclipse','neck','true','none',150,'silver','b',0,95,0,68,0,808000,107,'true'),
  448. (926,'Necklace of Black Ore','neck','true','none',150,'silver','b',0,95,0,72,0,1230000,164,'true'),
  449. (927,'Necklace of Summoning','neck','true','none',150,'silver','b',0,95,0,68,0,808000,107,'true'),
  450. (928,'Otherworldly Necklace','neck','true','none',150,'silver','b',0,95,0,72,0,1230000,164,'true'),
  451. (929,'Elemental Necklace','neck','true','none',150,'silver','b',0,95,0,72,0,1230000,164,'true'),
  452. (930,'Necklace of Phantom','neck','true','none',150,'silver','a',0,95,0,80,0,2600000,208,'true'),
  453. (931,'Necklace of Grace','neck','true','none',150,'silver','b',0,95,0,68,0,808000,107,'true'),
  454. (932,'Necklace of Holy Spirit','neck','true','none',150,'silver','b',0,95,0,72,0,1230000,164,'true'),
  455. (933,'Phoenix Necklace','neck','true','none',150,'silver','a',0,95,0,80,26,1740000,139,'true'),
  456. (934,'Cerberus Necklace','neck','true','none',150,'silver','a',0,95,0,80,0,2600000,208,'true'),
  457. (935,'Necklace of Aid','neck','true','none',150,'silver','b',0,95,0,68,0,808000,107,'true'),
  458. (936,'Necklace of Blessing','neck','true','none',150,'silver','b',0,95,0,68,0,808000,107,'true'),
  459. (990,'Mandragora Essence','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  460. (991,'Royen\'s Key','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  461. (992,'Shilen\'s 1st Mark','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  462. (993,'Shilen\'s 2nd Mark','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  463. (994,'Eye of Abyss','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  464. (995,'Wanted Poster','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  465. (996,'Alex\'s Dagger','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  466. (997,'Pinter\'s Bill','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  467. (998,'Book of Aklantoth - Part 1','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  468. (999,'Book of Aklantoth - Part 2','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  469. (1000,'Book of Aklantoth - Part 3','gloves','false','none',60,'cloth','none',0,90,9,0,0,808000,0,'true'),
  470. (1100,'Cotton Tunic','chest','false','magic',2120,'cloth','none',0,90,21,0,38,2430,0,'true'),
  471. (1101,'Tunic of Devotion','chest','false','magic',2090,'cloth','none',0,90,30,0,67,20300,0,'true'),
  472. (1102,'Tunic of Magic','chest','false','magic',2080,'cloth','none',0,90,34,0,86,36900,0,'true'),
  473. (1103,'Cotton Stockings','legs','false','magic',1060,'cloth','none',0,90,13,0,23,1520,0,'true'),
  474. (1104,'Stockings of Devotion','legs','false','magic',1040,'cloth','none',0,90,19,0,42,12700,0,'true'),
  475. (1105,'Stockings of Magic','legs','false','magic',1030,'cloth','none',0,90,21,0,54,23000,0,'true'),
  476. (1119,'Short Leather Gloves','gloves','false','none',660,'leather','none',0,90,11,0,0,607,0,'true'),
  477. (1120,'Paagrio Hand','gloves','true','none',1600,'leather','c',0,90,34,0,0,161000,64,'true'),
  478. (1121,'Apprentice\'s Shoes','feet','false','none',1320,'leather','none',0,90,8,0,0,7,0,'true'),
  479. (1122,'Cotton Shoes','feet','false','none',1320,'leather','none',0,90,11,0,0,607,0,'true'),
  480. (1123,'Blue Buckskin Boots','feet','true','none',1300,'leather','d',0,90,22,0,0,33300,60,'true'),
  481. (1124,'Boots of Power','feet','true','none',1250,'leather','d',0,90,27,0,0,74700,135,'true'),
  482. (1125,'Assault Boots','feet','true','none',1240,'leather','d',0,90,29,0,0,97800,177,'true'),
  483. (1126,'Crimson Boots','feet','true','none',1210,'leather','c',0,90,34,0,0,161000,64,'true'),
  484. (1127,'Forgotten Boots','feet','true','none',4000,'leather','c',0,90,36,0,0,245000,98,'true'),
  485. (1128,'Adamantite Boots','feet','true','none',4000,'adamantaite','c',0,90,39,0,0,358000,143,'true'),
  486. (1129,'Crude Leather Shoes','feet','false','none',1320,'leather','none',0,90,11,0,0,607,0,'true'),
  487. (1146,'Squire\'s Shirt','chest','false','light',3301,'cloth','none',0,90,33,0,0,26,0,'false'),
  488. (1147,'Squire\'s Pants','legs','false','light',1750,'cloth','none',0,90,20,0,0,6,0,'false'),
  489. (1148,'Hard Leather Helmet','head','false','none',640,'leather','none',0,90,26,0,0,18400,0,'true'),
  490. (1149,'Shining Circlet','head','true','none',600,'steel','c',0,90,54,0,0,368000,147,'true'),
  491. (1308,'Compound Scale Mail','chest','false','heavy',1400,'fine_steel','none',0,98,51,0,0,368000,0,'true'),
  492. (1309,'Mithril Breastplate','chest','false','heavy',1000,'mithril','none',0,95,51,0,0,368000,0,'true'),
  493. (1310,'Tunic of Magic','chest','false','magic',150,'cloth','none',0,90,51,0,96,368000,0,'true'),
  494. (1311,'Puma Skin Shirt','chest','false','light',300,'leather','none',0,90,51,0,0,368000,0,'true'),
  495. (1312,'White Tunic','chest','false','magic',150,'cloth','none',0,90,51,0,142,368000,0,'true'),
  496. (1313,'Compound Scale Gaiters','legs','false','heavy',1000,'fine_steel','none',0,98,32,0,0,368000,0,'true'),
  497. (1314,'Mithril Gaiters','legs','false','heavy',600,'mithril','none',0,95,32,0,0,368000,0,'true'),
  498. (1315,'Stockings of Magic','legs','false','magic',150,'cloth','none',0,90,32,0,60,368000,0,'true'),
  499. (1316,'Puma Skin Gaiters','legs','false','light',400,'leather','none',0,90,32,0,0,368000,0,'true'),
  500. (1317,'Dark Stockings','legs','false','magic',150,'cloth','none',0,90,32,0,79,368000,0,'true'),
  501. (1318,'Gloves','gloves','false','none',80,'cloth','none',0,90,14,0,0,368000,0,'true'),
  502. (1319,'Leather Gloves','gloves','false','none',100,'leather','none',0,90,14,0,0,368000,0,'true'),
  503. (1320,'Excellent Leather Gloves','gloves','false','none',100,'leather','none',0,90,14,0,0,368000,0,'true'),
  504. (1321,'Rip Gauntlets','gloves','false','none',150,'leather','none',0,90,14,0,0,368000,0,'true'),
  505. (1322,'Bracer','gloves','false','none',80,'leather','none',0,90,14,0,0,368000,0,'true'),
  506. (1323,'Leather Shoes','feet','false','none',120,'leather','none',0,90,14,0,0,368000,0,'true'),
  507. (1324,'Low Boots','feet','false','none',150,'leather','none',0,90,14,0,0,368000,0,'true'),
  508. (1325,'Leather Boots','feet','false','none',250,'leather','none',0,90,14,0,0,368000,0,'true'),
  509. (1326,'Iron Boots','feet','false','none',300,'fine_steel','none',0,90,14,0,0,368000,0,'true'),
  510. (1327,'Boots','feet','false','none',200,'cloth','none',0,90,14,0,0,368000,0,'true'),
  511. (1506,'Necklace of Courage','neck','false','none',150,'silver','none',0,95,0,15,0,66,0,'true'),
  512. (1507,'Necklace of Valor','neck','false','none',150,'silver','none',0,95,0,21,0,4680,0,'true'),
  513. (1508,'Ring of Raccoon','rfinger,lfinger','false','none',150,'gold','none',0,95,0,11,0,2340,0,'true'),
  514. (1509,'Ring of Firefly','rfinger,lfinger','false','none',150,'gold','none',0,95,0,11,0,2340,0,'true'),
  515. (2376,'Avadon Breastplate','chest','true','heavy',7920,'leather','b',0,90,157,0,0,2080000,277,'true'),
  516. (2377,'Mithril Scale Gaiters','legs','true','heavy',3870,'leather','d',0,90,64,0,0,187000,340,'true'),
  517. (2378,'Brigandine Gaiters','legs','true','heavy',3820,'leather','d',0,90,64,0,0,187000,340,'true'),
  518. (2379,'Avadon Gaiters','legs','true','heavy',3520,'leather','b',0,90,98,0,0,1300000,173,'true'),
  519. (2380,'Blue Wolf Gaiters','legs','true','heavy',3370,'leather','b',0,90,104,0,0,2010000,268,'true'),
  520. (2381,'Doom Plate Armor','fullarmor','true','heavy',9980,'leather','b',0,90,270,0,0,4710000,628,'true'),
  521. (2382,'Tallum Plate Armor','fullarmor','true','heavy',9780,'leather','a',0,90,278,0,0,6770000,902,'true'),
  522. (2383,'Majestic Plate Armor','fullarmor','true','heavy',9200,'leather','a',0,90,293,0,0,10300000,824,'true'),
  523. (2384,'Zubei\'s Leather Shirt','chest','true','light',4330,'leather','b',0,90,117,0,0,1560000,208,'true'),
  524. (2385,'Dark Crystal Leather Armor','chest','true','light',4300,'leather','a',0,90,128,0,0,3470000,462,'true'),
  525. (2386,'Wooden Gaiters','legs','false','light',1670,'leather','none',0,90,29,0,0,4970,0,'true'),
  526. (2387,'Tempered Mithril Gaiters','legs','true','light',1530,'leather','c',0,90,56,0,0,237000,94,'true');
  527. COMMIT;
  528. INSERT INTO `armor` (`item_id`,`name`,`bodypart`,`crystallizable`,`armor_type`,`weight`,`material`,`crystal_type`,`avoid_modify`,`durability`,`p_def`,`m_def`,`mp_bonus`,`price`,`crystal_count`,`sellable`) VALUES
  529. (2388,'Zubei\'s Leather Gaiters','legs','true','light',1480,'leather','b',0,90,73,0,0,973000,129,'true'),
  530. (2389,'Dark Crystalline Leggings','legs','true','light',1480,'leather','a',0,90,80,0,0,2170000,289,'true'),
  531. (2390,'Avadon Leather Armor','fullarmor','true','light',5600,'leather','b',0,90,191,0,0,2280000,304,'true'),
  532. (2391,'Blue Wolf Leather Armor','fullarmor','true','light',5500,'leather','b',0,90,202,0,0,3530000,470,'true'),
  533. (2392,'Leather Armor of Doom','fullarmor','true','light',5500,'leather','b',0,90,202,0,0,3530000,470,'true'),
  534. (2393,'Tallum Leather Armor','fullarmor','true','light',5400,'leather','a',0,90,209,0,0,5080000,677,'true'),
  535. (2394,'Nightmarish Leather Armor','fullarmor','true','light',5300,'leather','a',0,90,220,0,0,7730000,618,'true'),
  536. (2395,'Majestic Leather Armor','fullarmor','true','light',5350,'leather','a',0,90,220,0,0,7730000,618,'true'),
  537. (2396,'Elven Mithril Tunic','chest','true','magic',720,'leather','d',0,90,54,0,169,224000,407,'true'),
  538. (2397,'Tunic of Zubei','chest','true','magic',1960,'leather','b',0,90,78,0,345,1560000,208,'true'),
  539. (2398,'Blue Wolf Tunic','chest','true','magic',1920,'leather','b',0,90,83,0,377,2410000,321,'true'),
  540. (2399,'Tunic of Doom','chest','true','magic',1900,'leather','b',0,90,83,0,377,2410000,321,'true'),
  541. (2400,'Tallum Tunic','chest','true','magic',1860,'leather','a',0,90,86,0,409,3470000,462,'true'),
  542. (2401,'Elven Mithril Stockings','legs','true','magic',2400,'leather','d',0,90,34,0,105,140000,254,'true'),
  543. (2402,'Stockings of Zubei','legs','true','magic',940,'leather','b',0,90,49,0,216,973000,129,'true'),
  544. (2403,'Blue Wolf Stockings','legs','true','magic',920,'leather','b',0,90,52,0,236,1510000,201,'true'),
  545. (2404,'Stockings of Doom','legs','true','magic',910,'leather','b',0,90,52,0,236,1510000,201,'true'),
  546. (2405,'Tallum Stockings','legs','true','magic',920,'leather','a',0,90,53,0,256,2170000,289,'true'),
  547. (2406,'Avadon Robe','fullarmor','true','magic',2540,'leather','b',0,90,127,0,561,2280000,304,'true'),
  548. (2407,'Dark Crystal Robe','fullarmor','true','magic',2450,'leather','a',0,90,139,0,665,5080000,677,'true'),
  549. (2408,'Robe of Nightmare','fullarmor','true','magic',2300,'leather','a',0,90,147,0,718,7730000,618,'true'),
  550. (2409,'Majestic Robe','fullarmor','true','magic',2330,'leather','a',0,90,147,0,718,7730000,618,'true'),
  551. (2410,'Nightmarish Tattoo','underwear','true','none',3600,'leather','a',0,90,139,0,0,5280000,422,'true'),
  552. (2411,'Brigandine Helmet','head','true','none',630,'leather','d',0,90,41,0,0,112000,203,'true'),
  553. (2412,'Plate Helmet','head','true','none',630,'leather','d',0,90,44,0,0,147000,267,'true'),
  554. (2413,'Chain Hood','head','true','none',620,'leather','c',0,90,47,0,0,189000,75,'true'),
  555. (2414,'Full Plate Helmet','head','true','none',600,'leather','c',0,90,58,0,0,536000,214,'true'),
  556. (2415,'Avadon Circlet','head','true','none',590,'leather','b',0,90,62,0,0,778000,103,'true'),
  557. (2416,'Blue Wolf Helmet','head','true','none',580,'leather','b',0,90,66,0,0,1210000,161,'true'),
  558. (2417,'Doom Helmet','head','true','none',580,'leather','b',0,90,66,0,0,1210000,161,'true'),
  559. (2418,'Helm of Nightmare','head','true','none',560,'leather','a',0,90,73,0,0,2640000,211,'true'),
  560. (2419,'Majestic Circlet','head','true','none',550,'leather','a',0,90,73,0,0,2640000,211,'true'),
  561. (2420,'Dragon Headgear','head','true','none',540,'leather','s',0,90,77,0,0,3590000,179,'true'),
  562. (2421,'The Hood','head','true','none',540,'leather','s',0,90,77,0,0,3590000,179,'true'),
  563. (2422,'Reinforced Leather Boots','feet','true','none',1280,'leather','d',0,90,24,0,0,50800,92,'true'),
  564. (2423,'Boots of Knowledge','feet','true','none',1270,'leather','d',0,90,24,0,0,50800,92,'true'),
  565. (2424,'Manticore Skin Boots','feet','true','none',1260,'leather','d',0,90,27,0,0,74700,135,'true'),
  566. (2425,'Brigandine Boots','feet','true','none',1250,'leather','d',0,90,27,0,0,74700,135,'true'),
  567. (2426,'Elven Mithril Boots','feet','true','none',1250,'leather','d',0,90,27,0,0,74700,135,'true'),
  568. (2427,'Salamander Skin Boots','feet','true','none',1230,'leather','d',0,90,29,0,0,97800,177,'true'),
  569. (2428,'Plate Boots','feet','true','none',1240,'leather','d',0,90,29,0,0,97800,177,'true'),
  570. (2429,'Chain Boots','feet','true','none',1220,'leather','c',0,90,32,0,0,126000,50,'true'),
  571. (2430,'Karmian Boots','feet','true','none',1230,'leather','c',0,90,32,0,0,126000,50,'true'),
  572. (2431,'Plated Leather Boots','feet','true','none',1220,'leather','c',0,90,32,0,0,126000,50,'true'),
  573. (2432,'Dwarven Chain Boots','feet','true','none',1210,'leather','c',0,90,32,0,0,126000,50,'true'),
  574. (2433,'Boots of Seal','feet','true','none',1220,'leather','c',0,90,32,0,0,126000,50,'true'),
  575. (2434,'Rind Leather Boots','feet','true','none',1220,'leather','c',0,90,34,0,0,161000,64,'true'),
  576. (2435,'Demon\'s Boots','feet','true','none',1220,'leather','c',0,90,36,0,0,245000,98,'true'),
  577. (2436,'Theca Leather Boots','feet','true','none',1210,'leather','c',0,90,37,0,0,275000,110,'true'),
  578. (2437,'Drake Leather Boots','feet','true','none',1210,'leather','c',0,90,39,0,0,358000,143,'true'),
  579. (2438,'Full Plate Boots','feet','true','none',1200,'leather','c',0,90,39,0,0,358000,143,'true'),
  580. (2439,'Blue Wolf Boots','feet','true','none',1130,'leather','b',0,90,44,0,0,804000,107,'true'),
  581. (2440,'Boots of Nightmare','feet','true','none',1110,'leather','a',0,90,48,0,0,1760000,140,'true'),
  582. (2441,'Dark Legion Boots','feet','true','none',1120,'leather','a',0,90,48,0,0,1760000,140,'true'),
  583. (2442,'Dasparion\'s Boots','feet','true','none',1100,'leather','a',0,90,48,0,0,1760000,140,'true'),
  584. (2443,'Dragon Leather Boots','feet','true','none',1100,'leather','s',0,90,51,0,0,2390000,119,'true'),
  585. (2444,'The Boots','feet','true','none',1100,'leather','s',0,90,51,0,0,2390000,119,'true'),
  586. (2445,'Dragon Scale Boots','feet','true','none',1100,'leather','a',0,90,48,0,0,1760000,140,'true'),
  587. (2446,'Reinforced Leather Gloves','gloves','true','none',640,'leather','d',0,90,24,0,0,50800,92,'true'),
  588. (2447,'Gloves of Knowledge','gloves','true','none',640,'leather','d',0,90,24,0,0,50800,92,'true'),
  589. (2448,'Manticore Skin Gloves','gloves','true','none',630,'leather','d',0,90,27,0,0,74700,135,'true'),
  590. (2449,'Brigandine Gauntlets','gloves','true','none',630,'leather','d',0,90,27,0,0,74700,135,'true'),
  591. (2450,'Elven Mithril Gloves','gloves','true','none',640,'leather','d',0,90,27,0,0,74700,135,'true'),
  592. (2451,'Sage\'s Worn Gloves','gloves','true','none',630,'leather','d',0,90,29,0,0,97800,177,'true'),
  593. (2452,'Reinforced Mithril Gloves','gloves','true','none',620,'leather','c',0,90,32,0,0,126000,50,'true'),
  594. (2453,'Chain Gloves','gloves','true','none',620,'leather','c',0,90,32,0,0,126000,50,'true'),
  595. (2454,'Karmian Gloves','gloves','true','none',620,'leather','c',0,90,32,0,0,126000,50,'true'),
  596. (2455,'Plated Leather Gloves','gloves','true','none',610,'leather','c',0,90,33,0,0,149000,59,'true'),
  597. (2456,'Dwarven Chain Gloves','gloves','true','none',600,'leather','c',0,90,34,0,0,161000,64,'true'),
  598. (2457,'Gloves of Seal','gloves','true','none',620,'leather','c',0,90,34,0,0,161000,64,'true'),
  599. (2458,'Rind Leather Gloves','gloves','true','none',600,'leather','c',0,90,34,0,0,161000,64,'true'),
  600. (2459,'Demon\'s Gloves','gloves','true','none',610,'leather','c',0,90,36,0,0,245000,98,'true'),
  601. (2460,'Theca Leather Gloves','gloves','true','none',600,'leather','c',0,90,37,0,0,275000,110,'true'),
  602. (2461,'Drake Leather Gloves','gloves','true','none',600,'leather','c',0,90,39,0,0,358000,143,'true'),
  603. (2462,'Full Plate Gauntlets','gloves','true','none',600,'leather','c',0,90,39,0,0,358000,143,'true'),
  604. (2463,'Divine Gloves','gloves','true','none',610,'leather','c',0,90,39,0,0,358000,143,'true'),
  605. (2464,'Avadon Gloves','gloves','true','none',590,'leather','b',0,90,41,0,0,519000,69,'true'),
  606. (2465,'Chain Gloves of Silence','gloves','true','none',590,'leather','b',0,90,41,0,0,519000,69,'true'),
  607. (2466,'Guardian\'s Gloves','gloves','true','none',590,'leather','b',0,90,41,0,0,519000,69,'true'),
  608. (2467,'Gloves of Blessing','gloves','true','none',590,'leather','b',0,90,41,0,0,519000,69,'true'),
  609. (2468,'Blessed Gloves','gloves','true','none',600,'leather','c',0,90,39,0,0,358000,143,'true'),
  610. (2469,'Gloves of The Underworld','gloves','true','none',580,'leather','a',0,90,45,0,0,1160000,154,'true'),
  611. (2470,'Gloves of Phantom','gloves','true','none',560,'leather','a',0,90,48,0,0,1760000,140,'true'),
  612. (2471,'Dark Legion Gloves','gloves','true','none',560,'leather','a',0,90,48,0,0,1760000,140,'true'),
  613. (2472,'Dark Crystal Gloves','gloves','true','none',580,'leather','a',0,90,45,0,0,1160000,154,'true'),
  614. (2473,'The Gloves','gloves','true','none',540,'leather','s',0,90,51,0,0,2390000,119,'true'),
  615. (2474,'Dasparion\'s Gloves','gloves','true','none',550,'leather','a',0,90,48,0,0,1760000,140,'true'),
  616. (2475,'Doom Gloves','gloves','true','none',580,'leather','b',0,90,44,0,0,804000,107,'true'),
  617. (2476,'Dragon Gauntlets','gloves','true','none',540,'leather','s',0,90,52,0,0,2610000,130,'true'),
  618. (2477,'Dragon Leather Gloves','gloves','true','none',540,'leather','s',0,90,51,0,0,2390000,119,'true'),
  619. (2478,'Tallum Gloves','gloves','true','none',580,'leather','a',0,90,45,0,0,1160000,154,'true'),
  620. (2479,'Gloves of Nightmare','gloves','true','none',550,'leather','a',0,90,48,0,0,1760000,140,'true'),
  621. (2480,'Elemental Gloves','gloves','true','none',580,'leather','b',0,90,44,0,0,804000,107,'true'),
  622. (2481,'Gloves of Grace','gloves','true','none',580,'leather','b',0,90,44,0,0,804000,107,'true'),
  623. (2482,'Majestic Gloves','gloves','true','none',540,'leather','a',0,90,48,0,0,1760000,140,'true'),
  624. (2483,'Gust Bracer','gloves','true','none',580,'leather','a',0,90,45,0,0,1160000,154,'true'),
  625. (2484,'Cerberus Gloves','gloves','true','none',540,'leather','a',0,90,48,0,0,1760000,140,'true'),
  626. (2485,'Implosion Gauntlets','gloves','true','none',580,'leather','b',0,90,44,0,0,804000,107,'true'),
  627. (2486,'Paradia Gloves','gloves','true','none',580,'leather','b',0,90,44,0,0,804000,107,'true'),
  628. (2487,'Blue Wolf Gloves','gloves','true','none',590,'leather','b',0,90,44,0,0,804000,107,'true'),
  629. (2488,'Phoenix Gloves','gloves','true','none',570,'leather','a',0,90,45,0,0,1160000,154,'true'),
  630. (2489,'Gloves of Black Ore','gloves','true','none',570,'leather','a',0,90,45,0,0,1160000,154,'true'),
  631. (2490,'Cloak of Silence','back','false','none',250,'leather','none',0,90,5,0,0,6770,0,'true'),
  632. (2491,'Golden Yarn Cloak','back','false','none',250,'leather','none',0,90,5,0,0,12300,0,'true'),
  633. (2492,'Shadow Cloak','back','true','none',240,'leather','c',0,90,12,0,0,126000,50,'true'),
  634. (2506,'Wolf\'s Leather Armor','wolf','false','pet',160,'leather','none',0,90,9,14,0,6961,0,'true'),
  635. (3891,'Wolf\'s Hide Armor','wolf','false','pet',160,'leather','none',0,90,13,16,0,17781,0,'true'),
  636. (3892,'Wolf\'s Hard Leather Mail','wolf','false','pet',160,'leather','none',0,90,16,18,0,32265,0,'true'),
  637. (3893,'Wolf\'s Wooden Armor','wolf','false','pet',160,'leather','none',0,90,19,20,0,54779,0,'true'),
  638. (3894,'Wolf\'s Ring Mail','wolf','false','pet',160,'leather','none',0,90,22,23,0,87433,0,'true'),
  639. (3895,'Wolf\'s Bone Armor','wolf','false','pet',160,'leather','none',0,90,26,26,0,133276,0,'true'),
  640. (3896,'Wolf\'s Scale Male','wolf','false','pet',160,'leather','none',0,90,30,29,0,195967,0,'true'),
  641. (3897,'Wof\'s Bronze Armor','wolf','false','pet',160,'leather','none',0,90,33,31,0,256642,0,'true'),
  642. (3898,'Wolf\'s Plate Mail','wolf','false','pet',160,'leather','none',0,90,37,33,0,331497,0,'true'),
  643. (3899,'Wolf\'s Steel Armor','wolf','false','pet',160,'leather','none',0,90,40,36,0,422762,0,'true'),
  644. (3900,'Wolf\'s Luxury Plate','wolf','false','pet',160,'leather','none',0,90,43,38,0,644347,0,'true'),
  645. (3901,'Wolf\'s Mithril Armor','wolf','false','pet',160,'leather','none',0,90,47,41,0,938705,0,'true'),
  646. (3912,'Hatchling\'s Soft Leather','hatchling','false','pet',160,'leather','none',0,90,26,26,0,197143,0,'true'),
  647. (3913,'Hatchling\'s Scale Mail','hatchling','false','pet',160,'leather','none',0,90,29,29,0,314456,0,'true'),
  648. (3914,'Hatchling\'s Brigandine','hatchling','false','pet',160,'leather','none',0,90,31,31,0,422374,0,'true'),
  649. (3915,'Hatchling\'s Bronze Coat','hatchling','false','pet',160,'leather','none',0,90,33,33,0,567100,0,'true'),
  650. (3916,'Hatchling\'s Steel Coat','hatchling','false','pet',160,'leather','none',0,90,36,36,0,758241,0,'true'),
  651. (3917,'Hatchling\'s Shadowplate','hatchling','false','pet',160,'leather','none',0,90,38,38,0,1098768,0,'true'),
  652. (3918,'Hatchling\'s Mithril Coat','hatchling','false','pet',160,'leather','none',0,90,41,41,0,1567803,0,'true'),
  653. (4224,'Dream Armor','chest','true','heavy',8920,'bronze','none',0,90,68,0,0,0,0,'true'),
  654. (4225,'Dream Stockings','legs','true','heavy',3960,'bronze','none',0,90,43,0,0,0,0,'true'),
  655. (4226,'Dream Gloves','gloves','true','none',650,'leather','none',0,90,17,0,0,0,0,'true'),
  656. (4227,'Dream Boots','feet','true','none',1310,'cloth','none',0,90,17,0,0,0,0,'true'),
  657. (4228,'Ubiquitous Armor','chest','true','heavy',8920,'bronze','none',0,90,68,0,0,0,0,'true'),
  658. (4229,'Ubiquitous Stockings','legs','true','heavy',3960,'bronze','none',0,90,43,0,0,0,0,'true'),
  659. (4230,'Ubiquitous Gloves','gloves','true','none',650,'leather','none',0,90,17,0,0,0,0,'true'),
  660. (4231,'Ubiquitous Boots','feet','true','none',1310,'cloth','none',0,90,17,0,0,0,0,'true'),
  661. (4234,'Hatchling\'s Level 65 Armor','chest','false','pet',160,'leather','none',0,90,50,50,0,0,0,'true'),
  662. (4235,'Hatchling\'s Level 75 Armor','chest','false','pet',160,'leather','none',0,90,58,58,0,0,0,'true'),
  663. (4236,'Gara Item','chest','false','light',160,'leather','none',0,90,58,58,0,0,0,'true'),
  664. (5170,'Mithril Panzer Coat','strider','false','pet',160,'leather','none',0,90,41,41,0,0,0,'true'),
  665. (5171,'Brigadine Panzer Coat','strider','false','pet',160,'leather','none',0,90,44,44,0,2300000,0,'true'),
  666. (5172,'Draconic Panzer Coat','strider','false','pet',160,'leather','none',0,90,46,46,0,0,0,'true'),
  667. (5173,'Blood Panzer Coat','strider','false','pet',160,'leather','none',0,90,49,49,0,4900000,0,'true'),
  668. (5174,'Ophidian Panzer Coat','strider','false','pet',160,'leather','none',0,90,52,52,0,0,0,'true'),
  669. (5175,'Inferno Panzer Coat','strider','false','pet',160,'leather','none',0,90,54,54,0,0,0,'true'),
  670. (5182,'Hatchling\'s Gorgon Coat','hatchling','false','pet',160,'leather','none',0,90,44,44,0,2300000,0,'true'),
  671. (5183,'Hatchling\'s Ophidian Plate','hatchling','false','pet',160,'leather','none',0,90,46,46,0,0,0,'true'),
  672. (5184,'Hatchling\'s Crimson Plate','hatchling','false','pet',160,'leather','none',0,90,49,49,0,0,0,'true'),
  673. (5185,'Hatchling\'s Draconic Plate','hatchling','false','pet',160,'leather','none',0,90,52,52,0,7300000,0,'true'),
  674. (5186,'Hatchling\'s Inferno Plate','hatchling','false','pet',160,'leather','none',0,90,54,54,0,10000000,0,'true'),
  675. (5216,'Wolf Level 75 Armor','chest','false','pet',160,'leather','none',0,90,71,58,0,0,0,'true'),
  676. (5287,'Sealed Dark Crystal breastplate','chest','true','heavy',7700,'crystal','a',0,95,171,0,0,4630000,370,'true'),
  677. (5288,'Sealed Dark Crystal Gaiters','legs','true','heavy',3320,'crystal','a',0,95,107,0,0,2890000,231,'true'),
  678. (5289,'Sealed Dark Crystal Helmet','head','true','none',570,'crystal','a',0,90,69,0,0,1740000,139,'true'),
  679. (5290,'Sealed Dark Crystal Gloves','gloves','true','none',580,'leather','a',0,90,46,0,0,1160000,92,'true'),
  680. (5291,'Sealed Dark Crystal Boots','feet','true','none',1110,'crystal','a',0,95,46,0,0,1160000,92,'true'),
  681. (5293,'Sealed Tallum Plate Armor','fullarmor','true','heavy',9780,'leather','a',0,90,278,0,0,6770000,541,'true'),
  682. (5294,'Sealed Tallum Helmet','head','true','none',570,'cloth','a',0,90,69,0,0,1740000,139,'true'),
  683. (5295,'Sealed Tallum Gloves','gloves','true','none',580,'leather','a',0,90,46,0,0,1160000,92,'true'),
  684. (5296,'Sealed Tallum Boots','feet','true','none',1130,'blood_steel','a',0,90,46,0,0,1160000,92,'true'),
  685. (5297,'Sealed Dark Crystal Leather Armor','chest','true','light',4300,'leather','a',0,90,128,0,0,3470000,277,'true'),
  686. (5298,'Sealed Dark Crystalline Leggings','legs','true','light',1480,'leather','a',0,90,80,0,0,2170000,173,'true'),
  687. (5299,'Sealed Gloves of The Underworld','gloves','true','none',580,'leather','a',0,90,45,0,0,1160000,154,'true'),
  688. (5300,'Sealed Boots of The Underworld','feet','true','none',1110,'leather','a',0,90,45,0,0,1160000,154,'true'),
  689. (5301,'Sealed Tallum Leather Armor','fullarmor','true','light',5400,'leather','a',0,90,209,0,0,5080000,406,'true'),
  690. (5302,'Sealed Gust Bracer','gloves','true','none',580,'leather','a',0,90,45,0,0,1160000,154,'true'),
  691. (5303,'Sealed Gust Boots','feet','true','none',1120,'blood_steel','a',0,90,45,0,0,1160000,154,'true'),
  692. (5304,'Sealed Tallum Tunic','chest','true','magic',1860,'leather','a',0,85,86,0,409,3470000,277,'true'),
  693. (5305,'Sealed Tallum Stockings','legs','true','magic',920,'leather','a',0,90,53,0,256,2170000,173,'true'),
  694. (5306,'Sealed Gloves of Black Ore','gloves','true','none',570,'leather','a',0,90,45,0,0,1160000,154,'true'),
  695. (5307,'Sealed Red Flame Boots','feet','true','none',1120,'blood_steel','a',0,90,45,0,0,1160000,154,'true'),
  696. (5308,'Sealed Dark Crystal Robe','fullarmor','true','magic',2450,'leather','a',0,90,139,0,665,5080000,406,'true'),
  697. (5309,'Sealed Phoenix Gloves','gloves','true','none',570,'leather','a',0,90,45,0,0,1160000,154,'true'),
  698. (5310,'Sealed Phoenix Boots','feet','true','none',1120,'blood_steel','a',0,90,45,0,0,1160000,154,'true'),
  699. (5311,'Sealed Armor of Nightmare','fullarmor','true','heavy',9580,'blood_steel','a',0,90,293,0,0,10300000,824,'true'),
  700. (5312,'Sealed Helm of Nightmare','head','true','none',560,'leather','a',0,90,73,0,0,2640000,211,'true'),
  701. (5313,'Sealed Gloves of Nightmare','gloves','true','none',550,'leather','a',0,90,49,0,0,1760000,140,'true'),
  702. (5314,'Sealed Boots of Nightmare','feet','true','none',1110,'leather','a',0,90,49,0,0,1760000,140,'true'),
  703. (5316,'Sealed Majestic Plate Armor','fullarmor','true','heavy',9200,'leather','a',0,90,293,0,0,10300000,824,'true'),
  704. (5317,'Sealed Majestic Circlet','head','true','none',550,'leather','a',0,90,73,0,0,2640000,211,'true'),
  705. (5318,'Sealed Majestic Gloves','gloves','true','none',540,'leather','a',0,90,49,0,0,1760000,140,'true'),
  706. (5319,'Sealed Majestic Boots','feet','true','none',1110,'blood_steel','a',0,95,49,0,0,1760000,140,'true'),
  707. (5320,'Sealed Leather Armor of Nightmare','fullarmor','true','light',5300,'leather','a',0,90,220,0,0,7730000,618,'true'),
  708. (5321,'Sealed Dark Legion Gloves','gloves','true','none',560,'leather','a',0,90,48,0,0,1760000,140,'true'),
  709. (5322,'Sealed Dark Legion Boots','feet','true','none',1120,'leather','a',0,90,48,0,0,1760000,140,'true'),
  710. (5323,'Sealed Majestic Leather Armor','fullarmor','true','light',5350,'leather','a',0,90,220,0,0,7730000,618,'true'),
  711. (5324,'Sealed Gloves of Phantom','gloves','true','none',560,'leather','a',0,90,48,0,0,1760000,140,'true'),
  712. (5325,'Sealed Boots of Phantom','feet','true','none',1120,'oriharukon','a',0,95,48,0,0,1760000,140,'true'),
  713. (5326,'Sealed Robe of Nightmare','fullarmor','true','magic',2300,'leather','a',0,90,147,0,718,7730000,618,'true'),
  714. (5327,'Sealed Cerberus Gloves','gloves','true','none',540,'leather','a',0,90,48,0,0,1760000,140,'true'),
  715. (5328,'Sealed Cerberus Boots','feet','true','none',1120,'damascus','a',0,90,48,0,0,1760000,140,'true'),
  716. (5329,'Sealed Majestic Robe','fullarmor','true','magic',2330,'leather','a',0,90,147,0,718,7730000,618,'true'),
  717. (5330,'Sealed Dasparion\'s Gloves','gloves','true','none',550,'leather','a',0,90,48,0,0,1760000,140,'true'),
  718. (5331,'Sealed Dasparion\'s Boots','feet','true','none',1100,'leather','a',0,90,48,0,0,1760000,140,'true'),
  719. (5576,'Sound Test Boots','feet','false','none',50,'cloth','none',0,90,0,0,0,100,0,'true'),
  720. (5590,'Squeaking Shoes','feet','false','none',50,'cloth','none',0,90,0,0,0,420000,0,'true'),
  721. (5709,'Sealed Zubei\'s Gauntlets','gloves','true','none',590,'mithril','b',0,90,41,0,0,0,1,'true'),
  722. (5710,'Zubei\'s Gauntlets Heavy Armor','gloves','true','none',590,'mithril','b',0,90,41,0,0,519000,69,'true'),
  723. (5711,'Zubei\'s Gauntlets Light Armor','gloves','true','none',590,'mithril','b',0,90,41,0,0,519000,69,'true'),
  724. (5712,'Zubei\'s Gauntlets Robe','gloves','true','none',590,'mithril','b',0,90,41,0,0,519000,69,'true'),
  725. (5713,'Sealed Avadon Gloves','gloves','true','none',590,'mithril','b',0,90,41,0,0,0,1,'true'),
  726. (5714,'Avadon Gloves Heavy Armor','gloves','true','none',590,'mithril','b',0,90,41,0,0,519000,69,'true'),
  727. (5715,'Avadon Gloves Light Armor','gloves','true','none',590,'mithril','b',0,90,41,0,0,519000,69,'true'),
  728. (5716,'Avadon Gloves Robe','gloves','true','none',590,'mithril','b',0,90,41,0,0,519000,69,'true'),
  729. (5717,'Sealed Blue Wolf Gloves','gloves','true','none',590,'leather','b',0,90,44,0,0,0,1,'true'),
  730. (5718,'Blue Wolf Gloves Heavy Armor','gloves','true','none',590,'leather','b',0,90,44,0,0,804000,107,'true'),
  731. (5719,'Blue Wolf Gloves Light Armor','gloves','true','none',590,'leather','b',0,90,44,0,0,804000,107,'true'),
  732. (5720,'Blue Wolf Gloves Robe','gloves','true','none',590,'leather','b',0,90,44,0,0,804000,107,'true'),
  733. (5721,'Sealed Doom Gloves','gloves','true','none',580,'leather','b',0,90,44,0,0,0,1,'true'),
  734. (5722,'Doom Gloves Heavy Armor','gloves','true','none',580,'leather','b',0,90,44,0,0,804000,107,'true'),
  735. (5723,'Doom Gloves Light Armor','gloves','true','none',580,'leather','b',0,90,44,0,0,804000,107,'true'),
  736. (5724,'Doom Gloves Robe','gloves','true','none',580,'leather','b',0,90,44,0,0,804000,107,'true'),
  737. (5725,'Sealed Zubei\'s Boots','feet','true','none',1180,'mithril','b',0,90,41,0,0,0,1,'true'),
  738. (5726,'Zubei\'s Boots Heavy Armor','feet','true','none',1180,'mithril','b',0,90,41,0,0,519000,69,'true'),
  739. (5727,'Zubei\'s Boots Light Armor','feet','true','none',1180,'mithril','b',0,90,41,0,0,519000,69,'true'),
  740. (5728,'Zubei\'s Boots Robe','feet','true','none',1180,'mithril','b',0,90,41,0,0,519000,69,'true'),
  741. (5729,'Sealed Avadon Boots','feet','true','none',1180,'mithril','b',0,90,41,0,0,0,1,'true'),
  742. (5730,'Avadon Boots Heavy Armor','feet','true','none',1180,'mithril','b',0,90,41,0,0,519000,69,'true'),
  743. (5731,'Avadon Boots Light Armor','feet','true','none',1180,'mithril','b',0,90,41,0,0,519000,69,'true'),
  744. (5732,'Avadon Boots Robe','feet','true','none',1180,'mithril','b',0,90,41,0,0,519000,69,'true'),
  745. (5733,'Sealed Blue Wolf Boots','feet','true','none',1130,'leather','b',0,90,44,0,0,0,1,'true'),
  746. (5734,'Blue Wolf Boots Heavy Armor','feet','true','none',1130,'leather','b',0,90,44,0,0,804000,107,'true'),
  747. (5735,'Blue Wolf Boots Light Armor','feet','true','none',1130,'leather','b',0,90,44,0,0,804000,107,'true'),
  748. (5736,'Blue Wolf Boots Robe','feet','true','none',1130,'leather','b',0,90,44,0,0,804000,107,'true'),
  749. (5737,'Sealed Boots of Doom','feet','true','none',1130,'mithril','b',0,90,44,0,0,0,1,'true'),
  750. (5738,'Doom Boots Heavy Armor','feet','true','none',1130,'mithril','b',0,90,44,0,0,804000,107,'true'),
  751. (5739,'Doom Boots Light Armor','feet','true','none',1130,'mithril','b',0,90,44,0,0,804000,107,'true'),
  752. (5740,'Doom Boots Robe','feet','true','none',1130,'mithril','b',0,90,44,0,0,804000,107,'true'),
  753. (5765,'Dark Crystal Gloves Heavy Armor','gloves','true','none',580,'leather','a',0,90,46,0,0,1160000,154,'true'),
  754. (5766,'Dark Crystal Gloves Light Armor','gloves','true','none',580,'leather','a',0,90,46,0,0,1160000,154,'true'),
  755. (5767,'Dark Crystal Gloves Robe','gloves','true','none',580,'leather','a',0,90,46,0,0,1160000,154,'true'),
  756. (5768,'Tallum Gloves Heavy Armor','gloves','true','none',580,'leather','a',0,90,46,0,0,1160000,154,'true'),
  757. (5769,'Tallum Gloves Light Armor','gloves','true','none',580,'leather','a',0,90,46,0,0,1160000,154,'true'),
  758. (5770,'Tallum Gloves Robe','gloves','true','none',580,'leather','a',0,90,46,0,0,1160000,154,'true'),
  759. (5771,'Gloves of Nightmare Heavy Armor','gloves','true','none',550,'leather','a',0,90,49,0,0,1760000,140,'true'),
  760. (5772,'Gloves of Nightmare Light Armor','gloves','true','none',550,'leather','a',0,90,49,0,0,1760000,140,'true'),
  761. (5773,'Gloves of Nightmare Robe','gloves','true','none',550,'leather','a',0,90,49,0,0,1760000,140,'true'),
  762. (5774,'Majestic Gloves Heavy Armor','gloves','true','none',540,'leather','a',0,90,49,0,0,1760000,140,'true'),
  763. (5775,'Majestic Gloves Light Armor','gloves','true','none',540,'leather','a',0,90,49,0,0,1760000,140,'true'),
  764. (5776,'Majestic Gloves Robe','gloves','true','none',540,'leather','a',0,90,49,0,0,1760000,140,'true'),
  765. (5777,'Dark Crystal Boots Heavy Armor','feet','true','none',1110,'crystal','a',0,95,46,0,0,1160000,154,'true'),
  766. (5778,'Dark Crystal Boots Light Armor','feet','true','none',1110,'crystal','a',0,95,46,0,0,1160000,154,'true'),
  767. (5779,'Dark Crystal Boots Robe','feet','true','none',1110,'crystal','a',0,95,46,0,0,1160000,154,'true'),
  768. (5780,'Tallum Boots Heavy Armor','feet','true','none',1130,'blood_steel','a',0,90,46,0,0,1160000,154,'true'),
  769. (5781,'Tallum Boots Light Armor','feet','true','none',1130,'blood_steel','a',0,90,46,0,0,1160000,154,'true'),
  770. (5782,'Tallum Boots Robe','feet','true','none',1130,'blood_steel','a',0,90,46,0,0,1160000,154,'true'),
  771. (5783,'Boots of Nightmare Heavy Armor','feet','true','none',1110,'leather','a',0,90,49,0,0,1760000,140,'true'),
  772. (5784,'Boots of Nightmare Light Armor','feet','true','none',1110,'leather','a',0,90,49,0,0,1760000,140,'true'),
  773. (5785,'Boots of Nightmare Robe','feet','true','none',1110,'leather','a',0,90,49,0,0,1760000,140,'true'),
  774. (5786,'Majestic Boots Heavy Armor','feet','true','none',1110,'blood_steel','a',0,95,49,0,0,1760000,140,'true'),
  775. (5787,'Majestic Boots Light Armor','feet','true','none',1110,'blood_steel','a',0,95,49,0,0,1760000,140,'true'),
  776. (5788,'Majestic Boots Robe','feet','true','none',1110,'blood_steel','a',0,95,49,0,0,1760000,140,'true'),
  777. (5808,'Party Mask','hair','false','none',10,'wood','none',0,90,0,0,0,600000,0,'true'),
  778. (6323,'Sealed Phoenix Necklace','neck','true','none',150,'silver','a',0,95,0,76,0,1740000,139,'true'),
  779. (6324,'Sealed Phoenix Earring','rear,lear','true','none',150,'silver','a',0,95,0,57,0,1310000,104,'true'),
  780. (6325,'Sealed Phoenix Ring','rfinger,lfinger','true','none',150,'gold','a',0,95,0,38,0,871000,69,'true'),
  781. (6326,'Sealed Majestic Necklace','neck','true','none',150,'silver','a',0,95,0,80,0,2600000,208,'true'),
  782. (6327,'Sealed Majestic Earring','rear,lear','true','none',150,'silver','a',0,95,0,60,0,1950000,156,'true'),
  783. (6328,'Sealed Majestic Ring','rfinger,lfinger','true','none',150,'silver','a',0,95,0,40,0,1300000,104,'true'),
  784. (6373,'Imperial Crusader Breastplate','chest','true','heavy',7620,'scale_of_dragon','s',0,100,205,0,0,0,0,'true'),
  785. (6374,'Imperial Crusader Gaiters','legs','true','heavy',3260,'scale_of_dragon','s',0,100,128,0,0,0,0,'true'),
  786. (6375,'Imperial Crusader Gauntlets','gloves','true','none',540,'leather','s',0,90,55,0,0,0,0,'true'),
  787. (6376,'Imperial Crusader Boots','feet','true','none',1110,'leather','s',0,90,55,0,0,0,0,'true'),
  788. (6378,'Imperial Crusader Helmet','head','true','none',550,'bone','s',0,90,83,0,0,0,0,'true'),
  789. (6379,'Draconic Leather Armor','fullarmor','true','light',4950,'leather','s',0,100,249,0,0,0,0,'true'),
  790. (6380,'Draconic Leather Gloves','gloves','true','none',540,'leather','s',0,90,55,0,0,0,0,'true'),
  791. (6381,'Draconic Leather Boots','feet','true','none',1110,'leather','s',0,90,55,0,0,0,0,'true'),
  792. (6382,'Draconic Leather Helmet','head','true','none',550,'bone','s',0,90,83,0,0,0,0,'true'),
  793. (6383,'Major Arcana Robe','fullarmor','true','magic',2300,'cloth','s',0,100,166,0,866,0,0,'true'),
  794. (6384,'Major Arcana Gloves','gloves','true','none',540,'leather','s',0,90,55,0,0,0,0,'true'),
  795. (6385,'Major Arcana Boots','feet','true','none',1110,'leather','s',0,90,55,0,0,0,0,'true'),
  796. (6386,'Major Arcana Circlet','head','true','none',550,'bone','s',0,90,83,0,0,0,0,'true'),
  797. (6394,'Red Party Mask','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'true'),
  798. (6408,'Formal Wear','fullarmor','false','magic',1000,'cloth','none',0,0,0,0,0,0,0,'false'),
  799. (6656,'Earring of Antharas','rear,lear','true','none',150,'gold','s',0,95,0,71,31,0,0,'false'),
  800. (6657,'Necklace of Valakas','neck','true','none',150,'gold','s',0,95,0,95,42,0,0,'false'),
  801. (6658,'Ring of Baium','rfinger,lfinger','true','none',150,'gold','s',0,95,0,48,21,0,0,'false'),
  802. (6659,'Zaken\'s Earring','rear,lear','true','none',150,'gold','s',0,95,0,71,31,0,0,'false'),
  803. (6660,'Ring of Queen Ant','rfinger,lfinger','true','none',150,'gold','b',0,95,0,48,21,0,0,'false'),
  804. (6661,'Earring of Orfen','rear,lear','true','none',150,'gold','a',0,95,0,71,31,0,0,'false'),
  805. (6662,'Ring of Core','rfinger,lfinger','true','none',150,'gold','a',0,95,0,48,21,0,0,'false'),
  806. (6674,'Sealed Imperial Crusader Breastplate','chest','true','heavy',7620,'scale_of_dragon','s',0,100,193,0,0,0,0,'false'),
  807. (6675,'Sealed Imperial Crusader Gaiters','legs','true','heavy',3260,'scale_of_dragon','s',0,100,121,0,0,0,0,'false'),
  808. (6676,'Sealed Imperial Crusader Gauntlet','gloves','true','none',540,'leather','s',0,90,55,0,0,0,0,'false'),
  809. (6677,'Sealed Imperial Crusader Boots','feet','true','none',1110,'leather','s',0,90,55,0,0,0,0,'false'),
  810. (6679,'Sealed Imperial Crusader Helmet','head','true','none',550,'bone','s',0,90,83,0,0,0,0,'false'),
  811. (6680,'Sealed Draconic Leather Armor','fullarmor','true','light',4950,'leather','s',0,100,236,0,0,0,0,'false'),
  812. (6681,'Sealed Draconic Leather Glove','gloves','true','none',540,'leather','s',0,90,55,0,0,0,0,'false'),
  813. (6682,'Sealed Draconic Leather Boots','feet','true','none',1110,'leather','s',0,90,55,0,0,0,0,'false'),
  814. (6683,'Sealed Draconic Leather Helmet','head','true','none',550,'bone','s',0,90,83,0,0,0,0,'false'),
  815. (6684,'Sealed Major Arcana Robe','fullarmor','true','magic',2300,'cloth','s',0,100,157,0,866,0,0,'false'),
  816. (6685,'Sealed Major Arcana Glove','gloves','true','none',540,'leather','s',0,90,55,0,0,0,0,'false'),
  817. (6686,'Sealed Major Arcana Boots','feet','true','none',1110,'leather','s',0,90,55,0,0,0,0,'false'),
  818. (6687,'Sealed Major Arcana Circlet','head','true','none',550,'bone','s',0,90,83,0,0,0,0,'false'),
  819. (6724,'Sealed Tateossian Earring','rear,lear','true','none',150,'silver','s',0,95,0,68,0,0,0,'false'),
  820. (6725,'Sealed Tateossian Ring','rfinger,lfinger','true','none',150,'gold','s',0,95,0,46,0,0,0,'false'),
  821. (6726,'Sealed Tateossian Necklace','neck','true','none',150,'silver','s',0,95,0,91,0,0,0,'false'),
  822. (6834,'Circlet of Innadrill','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  823. (6835,'Circlet of Dion','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  824. (6836,'Circlet of Goddard','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  825. (6837,'Circlet of Oren','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  826. (6838,'Circlet of Gludio','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  827. (6839,'Circlet of Giran','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  828. (6840,'Circlet of Aden','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  829. (6841,'Crown of Lord','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  830. (6842,'Wings of Destiny Circlet','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  831. (6843,'Cat Ear','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  832. (6844,'Lady\'s Hair Pin','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  833. (6845,'Pirate\'s Eye Patch','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  834. (6846,'Monocle','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  835. (7059,'Hair Accessory for Events','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  836. (7060,'Tateossian Hairband','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  837. (7680,'Raccoon Ear','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  838. (7681,'Outlaw\'s Eyepatch','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  839. (7682,'Maiden\'s Hairpin','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  840. (7683,'Rabbit Ear','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  841. (7694,'Noblesse Tiara','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  842. (7695,'Forget-me-not Hairpin','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  843. (7696,'Daisy Hairpin','hair','false','none',10,'wood','none',0,90,0,0,0,250000,0,'false'),
  844. (7836,'Santa\'s Hat','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false'),
  845. (7837,'Gold-line Mask','hair','false','none',0,'steel','none',0,90,0,0,0,250000,0,'false'),
  846. (7839,'Gold-line Mask - Black','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  847. (7840,'Rabbit Ears - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  848. (7841,'Racoon Ears - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  849. (7842,'Cat Ears - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  850. (7843,'Pirate\'s Eyepatch - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  851. (7844,'Monocle - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  852. (7845,'Outlaw\'s Eyepatch - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  853. (7846,'Lady\'s Hairpin - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  854. (7847,'Noblewoman\'s Hairpin - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  855. (7848,'Forget-me-not Hairpin - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  856. (7849,'Daisy Hairpin - For Event','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  857. (7850,'Clan Oath Helm','head','true','none',640,'steel','d',0,90,37,0,0,0,0,'true'),
  858. (7851,'Clan Oath Armor','fullarmor','true','heavy',9870,'steel','d',0,90,158,0,0,0,0,'true'),
  859. (7852,'Clan Oath Gauntlets','gloves','true','none',640,'steel','d',0,90,24,0,0,0,0,'true'),
  860. (7853,'Clan Oath Sabaton','feet','true','none',1280,'steel','d',0,90,24,0,0,0,0,'true'),
  861. (7854,'Clan Oath Brigandine','fullarmor','true','light',5400,'steel','d',0,90,119,0,0,0,0,'true'),
  862. (7855,'Clan Oath Leather Gloves','gloves','true','none',640,'steel','d',0,90,24,0,0,0,0,'true'),
  863. (7856,'Clan Oath Boots','feet','true','none',1280,'steel','d',0,90,24,0,0,0,0,'true'),
  864. (7857,'Clan Oath Aketon','fullarmor','true','magic',2450,'steel','d',0,90,79,0,239,0,0,'true'),
  865. (7858,'Clan Oath Padded Gloves','gloves','true','none',640,'steel','d',0,90,24,0,0,0,0,'true'),
  866. (7859,'Clan Oath Sandals','feet','true','none',1280,'steel','d',0,90,24,0,0,0,0,'true'),
  867. (7860,'Apella Helmet','head','true','none',570,'steel','s',0,90,69,0,0,0,0,'true'),
  868. (7861,'Apella Plate Armor','fullarmor','true','heavy',9780,'steel','s',0,90,278,0,0,0,0,'true'),
  869. (7862,'Apella Gauntlet','gloves','true','heavy',580,'steel','s',0,90,46,0,0,0,0,'true'),
  870. (7863,'Apella Solleret','feet','true','heavy',1130,'steel','s',0,90,46,0,0,0,0,'true'),
  871. (7864,'Apella Brigandine','fullarmor','true','light',5400,'steel','s',0,90,209,0,0,0,0,'true'),
  872. (7865,'Apella Leather Gloves','gloves','true','light',580,'steel','s',0,90,46,0,0,0,0,'true'),
  873. (7866,'Apella Boots','feet','true','light',1130,'steel','s',0,90,46,0,0,0,0,'true'),
  874. (7867,'Apella Doublet','fullarmor','true','magic',2450,'steel','s',0,90,139,0,665,0,0,'true'),
  875. (7868,'Apella Silk Gloves','gloves','true','magic',580,'steel','s',0,90,46,0,0,0,0,'true'),
  876. (7869,'Apella Sandals Robe','feet','true','magic',1130,'steel','s',0,90,46,0,0,0,0,'true'),
  877. (7870,'Sealed Apella Helmet','head','true','none',570,'steel','s',0,90,69,0,0,0,0,'true'),
  878. (7871,'Sealed Apella Plate Armor','fullarmor','true','heavy',9780,'steel','s',0,90,278,0,0,0,0,'true'),
  879. (7872,'Sealed Apella Gauntlet','gloves','true','heavy',580,'steel','s',0,90,46,0,0,0,0,'true'),
  880. (7873,'Sealed Apella Solleret','feet','true','heavy',1130,'steel','s',0,90,46,0,0,0,0,'true'),
  881. (7874,'Sealed Apella Brigandine','fullarmor','true','light',5400,'steel','s',0,90,209,0,0,0,0,'true'),
  882. (7875,'Sealed Apella Leather Gloves','gloves','true','light',580,'steel','s',0,90,46,0,0,0,0,'true'),
  883. (7876,'Sealed Apella Boots','feet','true','light',1130,'steel','s',0,90,46,0,0,0,0,'true'),
  884. (7877,'Sealed Apella Doublet','fullarmor','true','magic',2450,'steel','s',0,90,139,0,665,0,0,'true'),
  885. (7878,'Sealed Apella Silk Gloves','gloves','true','magic',580,'steel','s',0,90,46,0,0,0,0,'true'),
  886. (7879,'Sealed Apella Sandals Robe','feet','true','magic',1130,'steel','s',0,90,46,0,0,0,0,'true'),
  887. (8177,'Raid Challenger\'s Circlet','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  888. (8178,'Raid Adventurer\'s Circlet','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  889. (8179,'Raid Master\'s Circlet','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  890. (8180,'Circlet of Ice Fairy Sirra','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  891. (8181,'Circlet of Academy','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  892. (8182,'Circlet of Rune','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  893. (8183,'Circlet of Schuttgart','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  894. (8184,'Party Hat','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  895. (8185,'Feathered Hat','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  896. (8186,'Artisan\'s Goggle','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  897. (8187,'Red Horn of Victory','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  898. (8188,'Little Angel Wing','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  899. (8189,'Fairy\'s Antenna','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'true'),
  900. (8191,'Frintezza\'s Necklace','neck','true','none',150,'gold','s',0,90,0,95,0,0,0,'true'),
  901. (8541,'Little Harness','hatchling','false','none',160,'steel','none',0,90,10,25,0,0,0,'true'),
  902. (8552,'WorldCup Mask','hair','false','none','10','wood','none','0','90','0','0','0','0','0','true'),
  903. (8553,'Red Mask of Victory','hair','false','none','10','wood','none','0','0','0','0','0','0','0','true'),
  904. (8557,'Blue Party Hat','hair','false','none',10,'wood','none',0,90,0,0,0,0,0,'false');