item_misc.txt 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252
  1. //
  2. // Structure of Database:
  3. // GroupID,ItemID,Rate
  4. //
  5. // Cookie Bag
  6. 7,529,5 //Candy
  7. 7,530,5 //Candy Cane
  8. 7,538,5 //Well-baked Cookie
  9. 7,539,5 //Piece of Cake
  10. 7,558,1 //Chocolate
  11. 7,559,1 //Hand-made Chocolate
  12. 7,560,1 //Hand-made White Chocolate
  13. 7,561,1 //White Chocolate
  14. 7,564,5 //Rice Ball
  15. 7,570,5 //Lucky Candy
  16. 7,571,5 //Lucky Candy Cane
  17. 7,572,5 //Lucky Cookie
  18. 7,573,1 //Chocolate Drink
  19. 7,12122,1 //Sesame Pastry
  20. 7,12123,1 //Honey Pastry
  21. 7,12124,1 //Rainbow Cake
  22. // First Aid Kit
  23. 8,501,5 // Red Potion
  24. 8,502,5 // Orange Potion
  25. 8,503,5 // Yellow Potion
  26. 8,504,5 // White Potion
  27. 8,505,5 // Blue Potion
  28. 8,506,5 // Green Potion
  29. 8,545,5 // Condensed Red Potion
  30. 8,546,5 // Condensed Yellow Potion
  31. 8,547,5 // Condensed White Potion
  32. 8,569,5 // Novice Potion
  33. 8,605,5 // Anodyne
  34. 8,645,5 // Concentration Potion
  35. 8,656,5 // Awakening Potion
  36. 8,657,5 // Berserk Potion
  37. 8,678,1 // Poison Bottle
  38. 8,12016,5 // Speed Potion
  39. 8,12017,5 // Slow Potion
  40. 8,12020,5 // Cursed_Water
  41. // Herbs
  42. 9,507,1 // Red Herb
  43. 9,508,1 // Yellow Herb
  44. 9,509,1 // White Herb
  45. // Fruits
  46. 10,512,1 // Apple
  47. 10,513,1 // Banana
  48. 10,514,1 // Grape
  49. 10,515,1 // Carrot
  50. 10,516,1 // Potato
  51. // Meat
  52. 11,517,1 // Meat
  53. 11,528,1 // Monster Food
  54. // Candy
  55. 12,529,1 // Candy
  56. 12,530,1 // Candy Cane
  57. // Juice
  58. 13,531,1 // Apple Juice
  59. 13,532,1 // Banana Juice
  60. 13,534,1 // Carrot Juice
  61. // Fish
  62. 14,544,1 // Raw Fish
  63. 14,551,1 // Sushi
  64. // Boxes
  65. 15,603,1 // Old Blue Box
  66. 15,617,1 // Old Purple Box
  67. 15,644,1 // Gift Box
  68. // Gemstones
  69. 16,715,1 // Yellow Gemstone
  70. 16,716,1 // Red Gemstone
  71. 16,717,1 // Blue Gemstone
  72. // Elemental Resist Potions
  73. 17,12118,1 // Fire Resist Potion
  74. 17,12119,1 // Cold Resist Potion
  75. 17,12120,1 // Earth Resist Potion
  76. 17,12121,1 // Thunder Resist Potion
  77. // Ores
  78. 18,1002,30 // Iron_Ore
  79. 18,998,28 // Iron
  80. 18,993,26 // Yellow_Live
  81. 18,1003,24 // Coal
  82. 18,992,22 // Wind_Of_Verdure
  83. 18,1010,20 // Phracon
  84. 18,991,18 // Crystal_Blue
  85. 18,990,16 // Boody_Red
  86. 18,999,14 // Steel
  87. 18,1011,12 // Emveretarcon
  88. 18,757,10 // Elunium_Stone
  89. 18,756,9 // Oridecon_Stone
  90. 18,997,8 // Great_Nature
  91. 18,996,7 // Rough_Wind
  92. 18,995,6 // Mistic_Frozen
  93. 18,994,5 // Flame_Heart
  94. 18,985,4 // Elunium
  95. 18,984,3 // Oridecon
  96. 18,969,2 // Gold
  97. 18,714,1 // Emperium
  98. // Food Types
  99. 19,526,5 // Royal_Jelly
  100. 19,12042,10 // Str_Dish02
  101. 19,12057,10 // Agi_Dish02
  102. 19,12053,10 // Vit_Dish03
  103. 19,12062,10 // Dex_Dish02
  104. 19,12068,10 // Luk_Dish03
  105. 19,12047,10 // Int_Dish02
  106. 19,531,30 // Apple_Juice
  107. 19,532,30 // Banana_Juice
  108. 19,533,30 // Grape_Juice
  109. 19,534,30 // Carrot_Juice
  110. 19,538,30 // Well_Baked_Cookie
  111. 19,536,50 // Ice_Cream
  112. 19,544,50 // Fish_Slice
  113. 19,548,50 // Cheese
  114. 19,551,50 // Shusi
  115. 19,553,50 // Bun
  116. 19,554,50 // Mojji
  117. 19,535,50 // Pumpkin
  118. 19,516,100 // Sweet_Potato
  119. 19,513,100 // Banana
  120. 19,512,600 // Apple
  121. // Recovery Types
  122. 20,522,5 // Fruit_Of_Mastela
  123. 20,521,5 // Leaflet_Of_Aloe
  124. 20,520,10 // Leaflet_Of_Hinal
  125. 20,545,10 // Red_Slim_Potion
  126. 20,12118,10 // Resist_Earth
  127. 20,508,20 // Yellow_Herb
  128. 20,501,20 // Red_Potion
  129. 20,511,30 // Green_Herb
  130. 20,507,30 // Red_Herb
  131. 20,569,50 // Novice_Potion
  132. 20,549,50 // Nice_Sweet_Potato
  133. 20,529,100 // Candy
  134. 20,528,200 // Monster's_Feed
  135. 20,550,600 // Popped_Rice
  136. // Minerals - Unused
  137. 21,714,1 // Emperium
  138. 21,756,1 // Rough Oridecon
  139. 21,757,1 // Rough Elunium
  140. 21,969,1 // Gold
  141. 21,984,1 // Oridecon
  142. 21,985,1 // Elunium
  143. 21,990,1 // Red Blood
  144. 21,991,1 // Crystal Blue
  145. 21,992,1 // Wind of Verdure
  146. 21,993,1 // Green Live
  147. 21,994,1 // Flame Heart
  148. 21,995,1 // Mystic Frozen
  149. 21,996,1 // Rough Wind
  150. 21,997,1 // Great Nature
  151. 21,998,1 // Iron
  152. 21,999,1 // Steel
  153. 21,1002,1 // Iron Ore
  154. 21,1003,1 // Coal
  155. 21,1010,1 // Phracon
  156. 21,1011,1 // Emveretarcon
  157. // Set Of Taiming Item
  158. 22,619,1 // Unripe Apple
  159. 22,620,1 // Orange Juice
  160. 22,621,1 // Bitter Herb
  161. 22,622,1 // Rainbow Carrot
  162. 22,623,1 // Earthworm the Dude
  163. 22,624,1 // Rotten Fish
  164. 22,625,1 // Rusty Iron
  165. 22,626,1 // Monster Juice
  166. 22,627,1 // Sweet Milk
  167. 22,628,1 // Well-Dried Bone
  168. 22,629,1 // Singing Flower
  169. 22,630,1 // Dew Laden Moss
  170. 22,631,1 // Deadly Noxious Herb
  171. 22,632,1 // Fatty Chubby Earthworm
  172. 22,633,1 // Sweet Potato
  173. 22,634,1 // Tropical Banana
  174. 22,635,1 // Orc Trophy
  175. 22,636,1 // No Recipient
  176. 22,637,1 // Old Broom
  177. 22,638,1 // Silver Knife of Chastity
  178. 22,639,1 // Armlet of Obedience
  179. 22,640,1 // Shining Stone
  180. 22,641,1 // Contracts in Shadow
  181. 22,642,1 // Book of the Devil
  182. 22,659,1 // Her Heart
  183. 22,660,1 // Forbidden Red Candle
  184. 22,661,1 // Soft Apron
  185. 22,10001,1 // Skull Helm
  186. 22,10002,1 // Monster Oxygen Mask
  187. 22,10003,1 // Transparent Headgear
  188. 22,10004,1 // Pacifier
  189. 22,10005,1 // Wig
  190. 22,10006,1 // Queen's Hair Ornament
  191. 22,10007,1 // Silk Ribbon
  192. 22,10008,1 // Punisher
  193. 22,10009,1 // Wild Flower
  194. 22,10010,1 // Battered Pot
  195. 22,10011,1 // Stellar Hairpin
  196. 22,10012,1 // Tiny Egg Shell
  197. 22,10013,1 // Backpack
  198. 22,10014,1 // Rocker Glasses
  199. 22,10015,1 // Green Lace
  200. 22,10016,1 // Golden Bell
  201. 22,10017,1 // Bark Shorts
  202. 22,10018,1 // Monkey Circlet
  203. 22,10019,1 // Red Scarf
  204. 22,10020,1 // Grave Keeper's Sword
  205. 22,12373,1 // Boy's Pure Heart
  206. 22,12374,1 // Ice Fireworks
  207. 22,12395,1 // Tantan Noodle
  208. // Bundle Of Magic Scroll
  209. 23,686,1 // Level 3 Earth Spike
  210. 23,687,1 // Level 5 Earth Spike
  211. 23,688,1 // Level 3 Cold Bolt
  212. 23,689,1 // Level 5 Cold Bolt
  213. 23,690,1 // Level 3 Fire Bolt
  214. 23,691,1 // Level 5 Fire Bolt
  215. 23,692,1 // Level 3 Lightening Bolt
  216. 23,693,1 // Level 5 Lightening Bolt
  217. 23,694,1 // Level 3 Soul Strike
  218. 23,695,1 // Level 5 Soul Strike
  219. 23,696,1 // Level 1 Fire Ball
  220. 23,697,1 // Level 5 Fire Ball
  221. 23,698,1 // Level 1 Fire Wall
  222. 23,699,1 // Level 5 Fire Wall
  223. 23,700,1 // Level 1 Frost Diver
  224. 23,12000,1 // Level 5 Frost Diver
  225. 23,12001,1 // Level 3 Heal
  226. 23,12002,1 // Level 5 Heal
  227. // Random Quiver
  228. 24,12004,1 // Quiver
  229. 24,12005,1 // Iron Arrow Quiver
  230. 24,12006,1 // Steel Arrow Quiver
  231. 24,12007,1 // Oridecon Arrow Quiver
  232. 24,12008,1 // Fire Arrow Quiver
  233. 24,12009,1 // Silver Arrow Quiver
  234. 24,12010,1 // Wind Arrow Quiver
  235. 24,12011,1 // Stone Arrow Quiver
  236. 24,12012,1 // Crystal Arrow Quiver
  237. 24,12013,1 // Shadow Arrow Quiver
  238. 24,12014,1 // Immaterial Arrow Quiver
  239. 24,12015,1 // Rusty Arrow Quiver
  240. 24,12183,2 // Holy Arrow Quiver
  241. // Wrapped Mask
  242. 25,2278,10 // Mr. Smile
  243. 25,2281,10 // Opera Masque
  244. 25,2288,10 // Mr. Scream
  245. 25,2292,10 // Welding Mask
  246. 25,2297,10 // Goblin Mask
  247. 25,5005,10 // Gas Mask
  248. 25,5086,10 // Alarm Mask
  249. 25,5087,10 // Poker Face
  250. 25,5088,10 // Surprised Mask
  251. 25,5089,10 // Annoyed Mask
  252. 25,5090,10 // Goblin Leader Mask
  253. 25,5121,1 // Zherlthsh Mask
  254. 25,5176,2 // Hahoe Mask
  255. // Accessory Box
  256. 26,2601,10 // Ring
  257. 26,2602,11 // Earring
  258. 26,2603,12 // Necklace
  259. 26,2604,12 // Glove
  260. 26,2605,12 // Brooch
  261. 26,2607,12 // Clip
  262. 26,2608,14 // Rosary
  263. 26,2609,14 // Skull Ring
  264. 26,2610,14 // Gold Ring
  265. 26,2611,14 // Silver Ring
  266. 26,2612,14 // Flower Ring
  267. 26,2613,11 // Diamond Ring
  268. 26,2615,1 // Safety Ring
  269. 26,2616,1 // Critical Ring
  270. 26,2617,10 // Celebrant's Mitten
  271. 26,2618,11 // Matyr's Leash
  272. 26,2619,10 // Bow Thimble
  273. 26,2621,1 // Ring
  274. 26,2622,1 // Earring
  275. 26,2623,10 // Necklace
  276. 26,2624,1 // Glove
  277. 26,2625,1 // Brooch
  278. 26,2626,1 // Rosary
  279. 26,2627,10 // Belt
  280. 26,2628,14 // Novice Armlet
  281. 26,2654,1 // Shinobi Sash
  282. 26,2656,1 // Armor Charm
  283. 26,2658,10 // Nile Rose
  284. 26,2659,2 // Vesper Core 01
  285. 26,2660,2 // Vesper Core 02
  286. 26,2661,2 // Vesper Core 03
  287. 26,2662,2 // Vesper Core 04
  288. 26,2671,1 // Bow Thimble
  289. 26,2677,1 // Spiritual Ring
  290. 26,2680,9 // Ring of Minor Spirits
  291. 26,2700,2 // Red Silk of Seal
  292. 26,2701,1 // Glove of Orleans
  293. 26,2703,1 // Expert Ring
  294. 26,2716,1 // Librarian Glove
  295. 26,2717,1 // Pocket Watch
  296. 26,2718,1 // Lunatic Brooch
  297. 26,2719,1 // Iron Wrist
  298. // jewels
  299. 27,715,100 // Yellow_Gemstone
  300. 27,716,100 // Red_Gemstone
  301. 27,717,100 // Blue_Gemstone
  302. 27,718,10 // Dark_Red_Jewel
  303. 27,719,10 // Violet_Jewel
  304. 27,720,10 // Skyblue_Jewel
  305. 27,721,10 // Azure_Jewel
  306. 27,722,10 // Scarlet_Jewel
  307. 27,723,10 // Cardinal_Jewel
  308. 27,724,10 // Cardinal_Jewel_
  309. 27,725,10 // Red_Jewel
  310. 27,726,10 // Blue_Jewel
  311. 27,727,10 // White_Jewel
  312. 27,728,10 // Golden_Jewel
  313. 27,729,10 // Bluish_Green_Jewel
  314. 27,730,5 // Crystal_Jewel
  315. 27,731,4 // Crystal_Jewel_
  316. 27,732,3 // Crystal_Jewel__
  317. 27,733,27 // Crystal_Jewel___
  318. 27,746,50 // Glass_Bead
  319. // Egg Boy
  320. 32,514,300 // Grape
  321. 32,564,522 // Rice Ball
  322. 32,660,20 // Forbidden Red Candle
  323. 32,682,100 // Distilled Fighting Spirit
  324. 32,683,50 // Herb of Incantation
  325. 32,2274,5 // Ghost Bandana
  326. 32,5072,2 // Incubus Horn
  327. // Egg Girl
  328. 33,514,300 // Grape
  329. 33,564,522 // Rice Ball
  330. 33,661,20 // Soft Apron
  331. 33,682,100 // Distilled Fighting Spirit
  332. 33,683,50 // Herb of Incantation
  333. 33,5042,5 // Bao Bao
  334. 33,5066,2 // Succubus Horn
  335. // Lotto Box
  336. 35,7391,1 // Lotto Ball 31
  337. 35,7392,1 // Lotto Ball 32
  338. 35,7393,1 // Lotto Ball 33
  339. 35,7394,1 // Lotto Ball 34
  340. 35,7395,1 // Lotto Ball 35
  341. 35,7396,1 // Lotto Ball 36
  342. 35,7397,1 // Lotto Ball 37
  343. 35,7398,1 // Lotto Ball 38
  344. 35,7540,1 // Lotto Ball 39
  345. 35,7541,1 // Lotto Ball 40
  346. // Food Package
  347. 36,512,1 // Apple
  348. 36,513,1 // Banana
  349. 36,514,1 // Grape
  350. 36,515,1 // Carrot
  351. 36,516,1 // Potato
  352. 36,517,1 // Meat
  353. 36,518,1 // Honey
  354. 36,519,1 // Milk
  355. 36,520,1 // Hinalle Leaflet
  356. 36,521,1 // Aloe Leaflet
  357. 36,522,1 // Mastela Fruit
  358. 36,526,1 // Royal Jelly
  359. 36,529,1 // Candy
  360. 36,530,1 // Candy Cane
  361. 36,531,1 // Apple Juice
  362. 36,532,1 // Banana Juice
  363. 36,533,1 // Grape Juice
  364. 36,534,1 // Carrot Juice
  365. 36,536,1 // Ice Cream
  366. 36,538,1 // Well-baked Cookie
  367. 36,539,1 // Piece of Cake
  368. 36,544,1 // Raw Fish
  369. 36,548,1 // Cheese
  370. 36,549,1 // Yam
  371. 36,550,1 // Rice Cake
  372. 36,551,1 // Sushi
  373. 36,553,1 // Bao
  374. 36,554,1 // Mochi
  375. 36,555,1 // Traditional Rice Cake
  376. 36,556,1 // Rice Cake Stick
  377. 36,557,1 // Neatly Sliced Rice Cake
  378. 36,558,1 // Chocolate
  379. 36,559,1 // Hand-made Chocolate
  380. 36,560,1 // Hand-made White Chocolate
  381. 36,561,1 // White Chocolate
  382. 36,564,1 // Rice Ball
  383. 36,566,1 // Tom Yum Goong
  384. 36,567,1 // Shrimp
  385. 36,568,1 // Lemon
  386. 36,576,1 // Prickly Fruit
  387. 36,607,1 // Yggdrasil Berry
  388. 36,608,1 // Yggdrasil Seed
  389. 36,663,1 // Songpyun
  390. 36,669,1 // Rice-Cake Soup
  391. // Potions
  392. 37,501,1 // Red Potion
  393. 37,502,1 // Orange Potion
  394. 37,503,1 // Yellow Potion
  395. 37,504,1 // White Potion
  396. // Red Box_
  397. 38,5137,1 // Alice Doll
  398. 38,5138,9 // Magic Eyes
  399. 38,5139,10 // Lotus
  400. 38,5140,10 // Kawaii Ribbon
  401. // Old Bleu Box
  402. 39,519,1 // Milk
  403. 39,538,1 // Well-baked Cookie
  404. 39,644,1 // Gift Box
  405. 39,687,1 // Level 5 Earth Spike
  406. 39,689,1 // Level 5 Cold Bolt
  407. 39,691,1 // Level 5 Fire Bolt
  408. 39,693,1 // Level 5 Lightening Bolt
  409. 39,697,1 // Level 5 Fire Ball
  410. 39,699,1 // Level 5 Fire Wall
  411. 39,12000,1 // Level 5 Frost Diver
  412. 39,12002,1 // Level 5 Heal
  413. // Red Box
  414. 40,5099,1 // Neko Mimi
  415. 40,5137,11 // Alice Doll
  416. 40,5138,11 // Magic Eyes
  417. 40,5139,11 // Lotus
  418. 40,5140,11 // Kawaii Ribbon
  419. 40,5142,11 // Crescent Helm
  420. 40,5143,12 // Kabuki Mask
  421. 40,5152,1 // Phoenix Crown
  422. 40,5181,11 // Helm of Darkness
  423. 40,5182,1 // Puppy Hat
  424. 40,5183,11 // Nest Hat
  425. 40,5185,11 // Laurel Crown
  426. 40,5186,11 // Geographer Decoration
  427. 40,5187,10 // Twin Ribbon
  428. // Green Box
  429. 41,573,100 // Chocolate Drink
  430. 41,607,99 // Yggdrasil Berry
  431. 41,608,100 // Yggdrasil Seed
  432. 41,5182,1 // Puppy Hat
  433. 41,12018,100 // Firecracker
  434. 41,12075,100 // Steamed Tongue
  435. 41,12080,100 // Dragon Breath Cocktail
  436. 41,12085,100 // Immortal Stew
  437. 41,12090,100 // Steamed Desert Scorpions
  438. 41,12095,100 // Hwergelmir's Tonic
  439. 41,12100,100 // Cooked Nine Tail
  440. // Old Yellow Box
  441. 42,5259,1 // Elephant Hat
  442. 42,5260,1 // Cookie Hat
  443. 42,5261,1 // Silver Tiara
  444. 42,5262,1 // Golden Tiara
  445. // Hometown Gift
  446. 45,663,1 // Korean Rice Cake
  447. 45,12122,1 // Sesame Pastry
  448. 45,12123,1 // Honey Pastry
  449. 45,12124,1 // Rainbow Cake
  450. 45,12195,1 // Plain Rice Cake
  451. 45,12196,1 // Hearty Rice Cake
  452. 45,12197,1 // Salty Rice Cake
  453. 45,12198,1 // Lucky Rice Cake
  454. // Masquerade Ball Box
  455. 46,5296,10 // Drooping Nine Tail
  456. 46,5297,1 // Soul Wing
  457. 46,5298,10 // Dokebi's Wig
  458. 46,5299,10 // Pagdayaw
  459. // Tresure Box WoE
  460. 47,603,6 // Old Blue Box
  461. 47,658,6 // Tribal Solidarity
  462. 47,678,3 // Poison Bottle
  463. 47,732,9 // 3carat Diamond
  464. 47,12010,24 // Wind Arrow Quiver
  465. 47,12011,25 // Stone Arrow Quiver
  466. 47,12012,26 // Crystal Arrow Quiver
  467. 47,12105,12 // Taming Gift Set
  468. 47,12107,2 // Wrapped Mask
  469. 47,12108,9 // Scroll Package
  470. 47,12110,9 // First Aid Kit
  471. 47,12111,36 // Bundle of Food
  472. 47,12130,48 // Cookie Bag
  473. 47,12149,27 // Bullet Casing
  474. 47,12150,27 // Shell of Blood Casing
  475. 47,12151,27 // Silver Bullet Casing
  476. 47,12183,7 // Holy Arrow Quiver
  477. 47,12194,6 // Present from Home
  478. 47,12260,22 // Summer Event Suit
  479. 47,12702,8 // Old Bleu Box
  480. // Masquerade Ball Box2
  481. 48,5211,1 // Ribbon Hat
  482. 48,5213,13 // Rabbit Ears
  483. 48,5289,10 // Vanilmirth Hat
  484. 48,5304,10 // Executioner Hood
  485. // Easter Scroll
  486. 49,636,110 // No Recipient
  487. 49,637,110 // Old Broom
  488. 49,638,110 // Silver Knife of Chastity
  489. 49,639,110 // Armlet of Obedience
  490. 49,640,110 // Shining Stone
  491. 49,641,110 // Contracts in Shadow
  492. 49,642,110 // Book of the Devil
  493. 49,643,205 // Pet Incubator
  494. 49,659,110 // Her Heart
  495. 49,2264,1 // Munak Hat
  496. 49,2274,1 // Ghost Bandana
  497. 49,5046,1 // Bongun Hat
  498. 49,5167,1 // Munak Hat [1]
  499. 49,5168,1 // Bongun Hat [1]
  500. // Pierre Treasurebox
  501. 50,603,11 // Old Blue Box
  502. 50,604,3 // Dead Branch
  503. 50,617,5 // Old Purple Box
  504. 50,644,3 // Gift Box
  505. 50,975,3 // Scarlet Dyestuff
  506. 50,976,3 // Lemon Dyestuff
  507. 50,978,3 // Cobaltblue Dyestuff
  508. 50,979,3 // Darkgreen Dyestuff
  509. 50,980,3 // Orange Dyestuff
  510. 50,981,3 // Violet Dyestuff
  511. 50,982,3 // White Dyestuff
  512. 50,983,3 // Black Dyestuff
  513. 50,7289,3 // Peridot
  514. 50,7290,3 // Phlogopite
  515. 50,7291,3 // Agate
  516. 50,7292,3 // Muscovite
  517. 50,7293,3 // Rose Quartz
  518. 50,7294,3 // Turquoise
  519. 50,7295,3 // Citrin
  520. 50,7296,3 // Pyroxene
  521. 50,7297,3 // Biotite
  522. 50,12018,3 // Firecracker
  523. 50,12075,3 // Steamed Tongue
  524. 50,12085,3 // Immortal Stew
  525. 50,12090,3 // Steamed Desert Scorpions
  526. 50,12095,3 // Hwergelmir's Tonic
  527. 50,12100,3 // Cooked Nine Tail
  528. 50,12103,1 // Bloody Branch
  529. // Cherish Box
  530. 51,5454,1 // Puppy Hat
  531. 51,5455,4 // Decorative Geographer
  532. 51,5456,5 // Summer Hat
  533. // Cherish Box Ori
  534. 52,2712,3 // Collector's Edition Book
  535. 52,5212,2 // Solar Panels
  536. 52,5256,1 // Valkyrie Feather Band
  537. 52,5305,2 // Pirate Dagger
  538. 52,5332,2 // Loki Mask
  539. // Louise_Costume_Box
  540. 53,12132,18 // Red_Bag
  541. 53,12260,2 // Cool_Summer_Outfit
  542. // Xmas_Gift
  543. 54,559,18 // Light_Orange_Pot
  544. 54,560,18 // HandMade_Chocolate_
  545. 54,573,18 // Chocolate_Drink
  546. 54,603,24 // Old_Blue_Box
  547. 54,644,66 // Gift_Box
  548. 54,732,12 // Crystal_Jewel__
  549. 54,5136,12 // Santa's_Hat_
  550. 54,12016,12 // Speed_Up_Potion
  551. 54,12017,12 // Slow_Down_Potion
  552. 54,12105,6 // Set_Of_Taiming_Item
  553. 54,12107,6 // Wrapped_Mask
  554. 54,12108,12 // Bundle_Of_Magic_Scroll
  555. 54,12110,12 // First_Aid_Kit
  556. 54,12130,12 // Cookie_Bag
  557. 54,12132,6 // Red_Bag
  558. 54,12354,24 // Buche_De_Noel
  559. 54,12702,36 // Old_Bleu_Box
  560. 54,14546,6 // Fire_Cracker_Love
  561. 54,14550,6 // Fire_Cracker_Xmas
  562. // Fruit Basket
  563. 55,512,6 // Apple
  564. 55,513,5 // Banana
  565. 55,514,4 // Grape
  566. 55,522,3 // Mastela Fruit
  567. 55,535,2 // Pumpkin
  568. 55,568,6 // Lemon
  569. 55,576,2 // Prickly Fruit
  570. 55,578,4 // Strawberry
  571. 55,582,3 // Orange
  572. 55,587,2 // Red Prickly Fruit
  573. 55,607,1 // Yggdrasil Berry
  574. 55,608,1 // Yggdrasil Seed
  575. 55,7164,5 // Solid Peach
  576. 55,7182,4 // Cacao
  577. 55,11520,5 // Mora Mandarin
  578. 55,12574,4 // Mora Berry
  579. // Improved Coin Bag
  580. 56,6080,5 // Manuk Coin
  581. 56,6081,5 // Splendide Coin
  582. 56,6304,5 // Proof Of Sapha's Honor
  583. 56,6380,5 // Mora Village Coin
  584. 56,6418,1 // A Grade Coin
  585. 56,6419,2 // B Grade Coin
  586. 56,6420,1 // C Grade Coin
  587. 56,12636,8 // Malangdo Canned Specialties
  588. // Intermediate Coin Bag
  589. 57,6080,4 // Manuk Coin
  590. 57,6081,4 // Splendide Coin
  591. 57,6304,4 // Proof Of Sapha's Honor
  592. 57,6380,4 // Mora Village Coin
  593. 57,6419,1 // B Grade Coin
  594. 57,6420,2 // C Grade Coin
  595. 57,6421,1 // D Grade Coin
  596. 57,12636,9 // Malangdo Canned Specialties
  597. // Minor Coin Bag
  598. 58,6080,3 // Manuk Coin
  599. 58,6081,3 // Splendide Coin
  600. 58,6304,3 // Proof Of Sapha's Honor
  601. 58,6380,3 // Mora Village Coin
  602. 58,6420,1 // C Grade Coin
  603. 58,6421,2 // D Grade Coin
  604. 58,6422,1 // E Grade Coin
  605. 58,12636,10 // Malangdo Canned Specialties
  606. // S Grade Coin Bag
  607. 59,6423,3 // Sea God's Wrath
  608. 59,6418,2 // A Grade Coin
  609. 59,6419,1 // B Grade Coin
  610. // A Grade Coin Bag
  611. 60,6418,3 // A Grade Coin
  612. 60,6419,2 // B Grade Coin
  613. 60,6420,1 // C Grade Coin
  614. // Advanced Weapons Box
  615. 61,1130,1 // Nagan
  616. 61,1131,1 // Ice_Falchon
  617. 61,1132,1 // Edge
  618. 61,1133,1 // Fire_Brand
  619. 61,1134,1 // Caesar's Sword
  620. 61,1135,1 // Cutlas
  621. 61,1136,1 // Solar_Sword
  622. 61,1137,1 // Excalibur
  623. 61,1138,1 // Mysteltainn
  624. 61,1139,1 // Tirfing
  625. 61,1140,1 // Byeollungum
  626. 61,1141,1 // Immaterial_Sword
  627. 61,1148,1 // Star_Dust_Blade
  628. 61,1164,1 // Muramasa
  629. 61,1165,1 // Masamune
  630. 61,1166,1 // Dragon_Slayer
  631. 61,1167,1 // Schweizersabel
  632. 61,1168,1 // Zweihander
  633. 61,1169,1 // Executioner
  634. 61,1170,1 // Katzbalger
  635. 61,1171,1 // Zweihander_
  636. 61,1175,1 // Altas_Weapon
  637. 61,1176,1 // Muscle_Cutter
  638. 61,1178,1 // Schweizersabel_
  639. 61,1179,1 // Executioner__
  640. 61,1180,1 // Dragon_Slayer_
  641. 61,1181,1 // Tae_Goo_Lyeon
  642. 61,1182,1 // Bloody_Eater
  643. 61,1185,1 // Violet_Fear
  644. 61,1186,1 // Death_Guidance
  645. 61,1188,1 // Veteran_Sword
  646. 61,1189,1 // Krasnaya
  647. 61,1196,1 // Chrome_Metal_Two-Hand_Sword
  648. 61,1223,1 // Forturn_Sword
  649. 61,1224,1 // Sword_Breaker
  650. 61,1225,1 // Mail_Breaker
  651. 61,1227,1 // Weeder_Knife
  652. 61,1228,1 // Combat_Knife
  653. 61,1229,1 // Kitchen_Knife
  654. 61,1230,1 // Ice_Pick
  655. 61,1231,1 // Bazerald
  656. 61,1232,1 // Assasin_Dagger
  657. 61,1233,1 // Exorciser
  658. 61,1234,1 // Moonlight_Dagger
  659. 61,1235,1 // Azoth
  660. 61,1236,1 // Sucsamad
  661. 61,1237,1 // Grimtooth
  662. 61,1240,1 // Princess_Knife
  663. 61,1241,1 // Cursed_Dagger
  664. 61,1242,1 // Counter_Dagger
  665. 61,1244,1 // Holy_Dagger
  666. 61,1261,1 // Infiltrator
  667. 61,1263,1 // Unholy_Touch
  668. 61,1265,1 // Bloody_Roar
  669. 61,1266,1 // Infiltrator_
  670. 61,1268,1 // Wild_Beast_Claw
  671. 61,1269,1 // Inverse_Scale
  672. 61,1270,1 // Drill_Katar
  673. 61,1271,1 // Blood_Tears
  674. 61,1284,1 // Krishna
  675. 61,1285,1 // Chakram
  676. 61,1305,1 // Cleaver
  677. 61,1311,1 // Vecer_Axe
  678. 61,1363,1 // Bloody_Axe
  679. 61,1364,1 // Great_Axe
  680. 61,1365,1 // Sabbath
  681. 61,1366,1 // Light Epsilon
  682. 61,1367,1 // Slaughter
  683. 61,1368,1 // Tomahawk
  684. 61,1369,1 // Guillotine
  685. 61,1370,1 // Doom_Slayer
  686. 61,1371,1 // Doom_Slayer_
  687. 61,1376,1 // Heart_Breaker
  688. 61,1377,1 // Hurricane_Fury
  689. 61,1385,1 // Bradium_Stonehammer
  690. 61,1387,1 // Giant_Axe
  691. 61,1413,1 // Gungnir
  692. 61,1414,1 // Gelerdria
  693. 61,1415,1 // Brocca
  694. 61,1416,1 // Tjungkuletti
  695. 61,1418,1 // Gungnir_
  696. 61,1420,1 // Long_Horn
  697. 61,1421,1 // Battle_Hook
  698. 61,1422,1 // Hunting_Spear
  699. 61,1433,1 // Imperial_Spear
  700. 61,1466,1 // Crescent_Scythe
  701. 61,1467,1 // Bill_Guisarme
  702. 61,1468,1 // Zephyrus
  703. 61,1469,1 // Longinus's_Spear
  704. 61,1470,1 // Brionac
  705. 61,1471,1 // Hell_Fire
  706. 61,1473,1 // Wizardy_Staff
  707. 61,1474,1 // Gae_Bolg
  708. 61,1477,1 // Spectral_Spear
  709. 61,1478,1 // Ahlspiess
  710. 61,1479,1 // Spectral_Spear_
  711. 61,1480,1 // Gae_Bolg_
  712. 61,1481,1 // Zephyrus_
  713. 61,1484,1 // Cardo
  714. 61,1523,1 // Spike
  715. 61,1524,1 // Golden_Mace
  716. 61,1525,1 // Long_Mace
  717. 61,1527,1 // Quadrille
  718. 61,1528,1 // Grand_Cross
  719. 61,1538,1 // Spike_
  720. 61,1539,1 // Golden_Mace_
  721. 61,1540,1 // Grand_Cross_
  722. 61,1541,1 // Nemesis
  723. 61,1557,1 // Book_Of_The_Apocalypse
  724. 61,1558,1 // Girl's_Diary
  725. 61,1559,1 // Legacy_Of_Dragon
  726. 61,1561,1 // Hardcover_Book
  727. 61,1562,1 // Battlefield_Textbook
  728. 61,1565,1 // Ledger of Death
  729. 61,1616,1 // Wing Staff
  730. 61,1629,1 // Gentleman's Staff
  731. 61,1631,1 // Holy_Stick
  732. 61,1636,1 // Thorn_Staff
  733. 61,1637,1 // Eraser
  734. 61,1643,1 // Dead_Tree_Cane
  735. 61,1654,1 // Mental_Stick
  736. 61,1719,1 // Bow_Of_Roguemaster
  737. 61,1720,1 // Bow_Of_Rudra
  738. 61,1722,1 // Ballista
  739. 61,1724,1 // Dragon_Wing
  740. 61,1725,1 // Bow_Of_Minstrel
  741. 61,1727,1 // Balistar_
  742. 61,1737,1 // Ixion_Wing
  743. 61,1740,1 // Nepenthes_Bow
  744. 61,1741,1 // Cursed_Lyre
  745. 61,1745,1 // Falken_Blitz
  746. 61,1813,1 // Kaiser_Knuckle
  747. 61,1814,1 // Berserk
  748. 61,1815,1 // Claw_Of_Garm
  749. 61,1816,1 // Berserk_
  750. 61,1830,1 // Great_King's_Dance
  751. 61,1913,1 // Electronic_Guitar
  752. 61,1918,1 // Oriental_Lute
  753. 61,1920,1 // Berserk_Guitar
  754. 61,1922,1 // Oriental_Lute_
  755. 61,1926,1 // Harp_Of_Nepenthes
  756. 61,1930,1 // Green_Whistle
  757. 61,1962,1 // Lariat_Whip
  758. 61,1963,1 // Rapture_Rose
  759. 61,1964,1 // Chemeti_Whip
  760. 61,1969,1 // Blade_Whip
  761. 61,1970,1 // Queen's_Whip
  762. 61,1972,1 // Electric_Eel
  763. 61,1973,1 // Sea_Witch_Foot
  764. 61,1974,1 // Carrot_Whip
  765. 61,1976,1 // Queen's_Whip_
  766. 61,1979,1 // Stem_Of_Nepenthes
  767. 61,1984,1 // Stem_Whip
  768. 61,1985,1 // Rose_Vine
  769. 61,2000,1 // Destruction_Rod
  770. 61,2001,1 // Divine_Cross
  771. 61,2004,1 // Kronos
  772. 61,2005,1 // Dea_Staff
  773. 61,13046,1 // Krieg
  774. 61,13047,1 // Weihna
  775. 61,13061,1 // Black_Wing
  776. 61,13062,1 // Ancient_Dagger
  777. 61,13421,1 // Ruber
  778. 61,13431,1 // Chrome_Metal_Sword
  779. 61,16000,1 // Erde
  780. 61,16001,1 // Red_Square_Bag
  781. 61,16010,1 // Red_Ether_Bag
  782. 61,18103,1 // Mystic_Bow
  783. // Splendid Box
  784. 62,1189,1 // Krasnaya
  785. 62,1191,1 // Alca Bringer
  786. 62,1196,1 // Two-Handed Chrome Metal Sword
  787. 62,1284,1 // Krishna
  788. 62,1285,1 // Chakram
  789. 62,1287,1 // Durga
  790. 62,1311,1 // Vecer Axe
  791. 62,1387,1 // Giant Axe
  792. 62,1433,1 // Imperial Spear
  793. 62,1649,1 // Laphine Staff
  794. 62,1745,1 // Falken Blitz
  795. 62,1746,1 // Elven Bow
  796. 62,1930,1 // Green Whistle
  797. 62,1984,1 // Stem Whip
  798. 62,2148,1 // Rosa Shield
  799. 62,2153,1 // Imperial Guard
  800. 62,13046,1 // Krieg
  801. 62,13047,1 // Weihna
  802. 62,13061,1 // Black Wing
  803. 62,13421,1 // Ruber
  804. 62,15000,1 // Bone Plate
  805. 62,15014,1 // Ebone Armor
  806. 62,16000,1 // Erde
  807. 62,16001,1 // Red Square Bag
  808. 62,16003,1 // Carga Mace
  809. 62,16010,1 // Red Ether Bag
  810. 62,18103,2 // Mystic Bow
  811. // Armor Card Album
  812. 63,4001,1 // Poring Card
  813. 63,4003,1 // Pupa Card
  814. 63,4008,1 // Picky Card
  815. 63,4011,1 // Picky Egg Card
  816. 63,4014,1 // Roda Frog Card
  817. 63,4016,1 // Thief Bug Card
  818. 63,4021,1 // Rocker Card
  819. 63,4023,1 // Baby Desert Wolf Card
  820. 63,4031,1 // Peco Peco Card
  821. 63,4042,1 // Steel Chonchon Card
  822. 63,4061,1 // Cornutus Card
  823. 63,4078,1 // Savage Card
  824. 63,4089,1 // Swordfish Card
  825. 63,4098,1 // Dokebi Card
  826. 63,4099,1 // Pasana Card
  827. 63,4101,1 // Sandman Card
  828. 63,4105,1 // Marc Card
  829. 63,4114,1 // Argiope Card
  830. 63,4119,1 // Bathory Card
  831. 63,4141,1 // Evil Druid Card
  832. 63,4150,1 // Goat Card
  833. 63,4158,1 // Sky Deleter Card
  834. 63,4162,1 // Grizzly Card
  835. 63,4166,1 // Nightmare Terror Card
  836. 63,4170,1 // Dark Frame Card
  837. 63,4173,1 // Demon Pungus Card
  838. 63,4181,1 // Disguise Card
  839. 63,4189,1 // Wraith Dead Card
  840. 63,4191,1 // Loli Ruri Card
  841. 63,4194,1 // Rybio Card
  842. 63,4201,1 // Majoruros Card
  843. 63,4213,1 // Brilight Card
  844. 63,4216,1 // Sasquatch Card
  845. 63,4218,1 // Succubus Card
  846. 63,4220,1 // Solider Card
  847. 63,4222,1 // Skeleton Prisoner Card
  848. 63,4233,1 // Baby Leopard Card
  849. 63,4234,1 // Anolian Card
  850. 63,4242,1 // Apocalipse Card
  851. 63,4259,1 // Wooden Golem Card
  852. 63,4270,1 // Giant Spider Card
  853. 63,4279,1 // Earth Deleter Card
  854. 63,4280,1 // Geographer Card
  855. 63,4286,1 // Karakasa Card
  856. 63,4295,1 // Kraben Card
  857. 63,4298,1 // Creamy Fear Card
  858. 63,4299,1 // Clock Card
  859. 63,4300,1 // Chimera Card
  860. 63,4301,1 // Killer Mantis Card
  861. 63,4315,1 // Pest Card
  862. 63,4332,1 // Waste Stove Card
  863. 63,4333,1 // Venomous Card
  864. 63,4337,1 // Porcellio Card
  865. 63,4338,1 // Obsidian Card
  866. 63,4339,1 // Mineral Card
  867. 63,4346,1 // Egnigem Cenia Card
  868. 63,4353,1 // Remover Card
  869. 63,4369,1 // Venatu Card
  870. 63,4370,1 // Dimik Card
  871. 63,4371,1 // Archdam Card
  872. 63,4382,1 // Yellow Novus Card
  873. 63,4383,1 // Red Novus Card
  874. 63,4387,1 // Ancient Mimic Card
  875. 63,4392,1 // Dame of Sentinel Card
  876. 63,4393,1 // Mistress of Shelter Card
  877. 63,4400,1 // Aliza Card
  878. 63,4401,1 // Alicel Card
  879. 63,4404,1 // Skogul Card
  880. 63,4405,1 // Frus Card
  881. 63,4409,1 // Agav Card
  882. 63,4410,1 // Echio Card
  883. 63,4426,1 // Byorgue Card
  884. 63,4450,1 // Banshee Master Card
  885. // Headgear Card Album
  886. 64,4010,1 // Willow Card
  887. 64,4039,1 // Stainer Card
  888. 64,4041,1 // Coco Card
  889. 64,4046,1 // Martin Card
  890. 64,4052,1 // Elder Willow Card
  891. 64,4087,1 // Giearth Card
  892. 64,4110,1 // Ghoul Card
  893. 64,4112,1 // Marduk Card
  894. 64,4122,1 // Deviruchi Card
  895. 64,4127,1 // Nightmare Card
  896. 64,4161,1 // Grand Peco Card
  897. 64,4169,1 // Dark Illusion Card
  898. 64,4177,1 // Dryad Card
  899. 64,4185,1 // Rideword Card
  900. 64,4188,1 // Leib Olmai Card
  901. 64,4195,1 // Leaf Cat Card
  902. 64,4206,1 // Myst Case Card
  903. 64,4223,1 // Stalactic Golem Card
  904. 64,4229,1 // Tower Keeper Card
  905. 64,4241,1 // Arc Angeling Card
  906. 64,4258,1 // Evil Nymph Card
  907. 64,4260,1 // Wootan Shooter Card
  908. 64,4261,1 // Wootan Fighter Card
  909. 64,4269,1 // Incubus Card
  910. 64,4271,1 // Giant Hornet Card
  911. 64,4278,1 // Gibbet Card
  912. 64,4288,1 // Carat Card
  913. 64,4296,1 // Cramp Card
  914. 64,4311,1 // Permeter Card
  915. 64,4336,1 // Ungoliant Card
  916. 64,4343,1 // Holden Card
  917. 64,4354,1 // Gemini-S58 Card
  918. 64,4358,1 // Seyren Windsor Card
  919. 64,4364,1 // Margaretha Sorin Card
  920. 64,4366,1 // Kathryne Keyron Card
  921. 64,4379,1 // Blue Acidus Card
  922. 64,4411,1 // Vanberk Card
  923. 64,4412,1 // Isilla Card
  924. 64,4434,1 // Knocker Card
  925. 64,4438,1 // Banshee Card
  926. // Accessory Card Album
  927. 65,4022,1 // Spore Card
  928. 65,4027,1 // Kukre Card
  929. 65,4028,1 // Tarou Card
  930. 65,4033,1 // Poporing Card
  931. 65,4034,1 // Wormtail Card
  932. 65,4036,1 // Muka Card
  933. 65,4044,1 // Smokie Card
  934. 65,4048,1 // Poison Spore Card
  935. 65,4051,1 // Yoyo Card
  936. 65,4053,1 // Vitata Card
  937. 65,4064,1 // Zerom Card
  938. 65,4073,1 // Pirate Skeleton Card
  939. 65,4077,1 // Phen Card
  940. 65,4079,1 // Mantis Card
  941. 65,4084,1 // Marine Sphere Card
  942. 65,4091,1 // Kobold Card
  943. 65,4093,1 // Obeaune Card
  944. 65,4103,1 // Horong Card
  945. 65,4139,1 // Joker Card
  946. 65,4149,1 // Gargoyle Card
  947. 65,4152,1 // Galapago Card
  948. 65,4154,1 // Dumpling Child Card
  949. 65,4175,1 // Poisonous Toad Card
  950. 65,4187,1 // Raydric Archer Card
  951. 65,4190,1 // Wraith Card
  952. 65,4193,1 // Lude Card
  953. 65,4196,1 // Marin Card
  954. 65,4205,1 // Mimic Card
  955. 65,4209,1 // Violy Card
  956. 65,4212,1 // Bongun Card
  957. 65,4215,1 // Blazer Card
  958. 65,4219,1 // Sage Worm Card
  959. 65,4224,1 // Stem Worm Card
  960. 65,4227,1 // Spring Rabbit Card
  961. 65,4228,1 // Sleeper Card
  962. 65,4230,1 // Shinobi Card
  963. 65,4232,1 // Hermit Plant Card
  964. 65,4237,1 // Owl Duke Card
  965. 65,4238,1 // Owl Baron Card
  966. 65,4252,1 // Alligator Card
  967. 65,4256,1 // Orc Archer Card
  968. 65,4262,1 // Cloud Hermit Card
  969. 65,4264,1 // Wind Ghost Card
  970. 65,4265,1 // Jing Guai Card
  971. 65,4272,1 // Zhu Po Long Card
  972. 65,4282,1 // Tengu Card
  973. 65,4283,1 // Greatest General Card
  974. 65,4293,1 // Cookie Card
  975. 65,4294,1 // Quve Card
  976. 65,4321,1 // Hylozoist Card
  977. 65,4326,1 // Sea-Otter Card
  978. 65,4327,1 // Bloody Butterfly Card
  979. 65,4331,1 // Heater Card
  980. 65,4344,1 // Anopheles Card
  981. 65,4347,1 // Armeyer Dinze Card
  982. 65,4348,1 // Wickebine Tres Card
  983. 65,4349,1 // Errende Ebecee Card
  984. 65,4355,1 // Gremlin Card
  985. 65,4356,1 // Beholder Card
  986. 65,4377,1 // Grove Card
  987. 65,4384,1 // Hydrolancer Card
  988. 65,4385,1 // Dragon Egg Card
  989. 65,4389,1 // Plasma Card
  990. 65,4391,1 // Baroness of Retribution Card
  991. 65,4415,1 // Snowier Card
  992. 65,4416,1 // Siroma Card
  993. 65,4418,1 // Gazeti Card
  994. 65,4423,1 // Galion Card
  995. 65,4424,1 // Stapo Card
  996. 65,4433,1 // Imp Card
  997. 65,4436,1 // Ragged Zombie Card
  998. 65,4437,1 // Hell Poodle Card
  999. // Shoes Card Album
  1000. 66,4009,1 // Chonchon Card
  1001. 66,4038,1 // Zombie Card
  1002. 66,4050,1 // Male Thief Bug Card
  1003. 66,4070,1 // Eggyra Card
  1004. 66,4097,1 // Matyr Card
  1005. 66,4100,1 // Sohee Card
  1006. 66,4107,1 // Verit Card
  1007. 66,4151,1 // Gajomart Card
  1008. 66,4160,1 // Firelock Soldier Card
  1009. 66,4164,1 // Gullinbursti Card
  1010. 66,4186,1 // Raggler Card
  1011. 66,4199,1 // Merman Card
  1012. 66,4200,1 // Megalith Card
  1013. 66,4204,1 // Mini Demon Card
  1014. 66,4208,1 // Miyabi Doll Card
  1015. 66,4221,1 // Skeleton General Card
  1016. 66,4235,1 // Christmas Cookie Card
  1017. 66,4239,1 // Iron Fist Card
  1018. 66,4244,1 // Alarm Card
  1019. 66,4245,1 // Am Mut Card
  1020. 66,4249,1 // Ancient Worm Card
  1021. 66,4257,1 // Wild Rose Card
  1022. 66,4267,1 // Explosion Card
  1023. 66,4275,1 // Zombie Prisoner Card
  1024. 66,4290,1 // Cat O' Nine Tails Card
  1025. 66,4319,1 // Freezer Card
  1026. 66,4378,1 // Gold Acidus Card
  1027. 66,4381,1 // Green Ferus Card
  1028. 66,4396,1 // Odium of Thanatos Card
  1029. 66,4417,1 // Ice Titan Card
  1030. 66,4435,1 // Zombie Slaughter Card
  1031. // Shield Card Album
  1032. 67,4012,1 // Thief Bug Egg Card
  1033. 67,4013,1 // Andre Egg Card
  1034. 67,4032,1 // Ambernite Card
  1035. 67,4045,1 // Horn Card
  1036. 67,4058,1 // Thara Frog Card
  1037. 67,4066,1 // Orc Warrior Card
  1038. 67,4067,1 // Megalodon Card
  1039. 67,4074,1 // Bigfoot Card
  1040. 67,4075,1 // Argos Card
  1041. 67,4083,1 // Rafflesia Card
  1042. 67,4090,1 // Munak Card
  1043. 67,4120,1 // Sky Petite Card
  1044. 67,4124,1 // Medusa Card
  1045. 67,4136,1 // Khalitzburg Card
  1046. 67,4138,1 // Anubis Card
  1047. 67,4207,1 // Mysteltainn Card
  1048. 67,4217,1 // Enchanted Peach Tree Card
  1049. 67,4226,1 // Sting Card
  1050. 67,4231,1 // Mi Gao Card
  1051. 67,4240,1 // Arclouze Card
  1052. 67,4248,1 // Ancient Mummy Card
  1053. 67,4250,1 // Executioner Card
  1054. 67,4253,1 // Alice Card
  1055. 67,4254,1 // Ogretooth Card
  1056. 67,4277,1 // Zealotus Card
  1057. 67,4304,1 // Tamruan Card
  1058. 67,4309,1 // Parasite Card
  1059. 67,4314,1 // Penomena Card
  1060. 67,4322,1 // High Orc Card
  1061. 67,4340,1 // Teddy Bear Card
  1062. 67,4397,1 // Despero of Thanatos Card
  1063. 67,4413,1 // Hodremlin Card
  1064. 67,4414,1 // Seeker Card
  1065. 67,4420,1 // Muscipular Card
  1066. 67,4439,1 // Flame Skull Card
  1067. 67,4442,1 // Tatacho Card
  1068. 67,4443,1 // Aqua Elemental Card
  1069. 67,4444,1 // Draco Card
  1070. 67,4445,1 // Luciola Vespa Card
  1071. 67,4447,1 // Centipede Card
  1072. 67,4448,1 // Cornus Card
  1073. 67,4449,1 // Dark Shadow Card
  1074. // Weapon Card Album
  1075. 68,4002,1 // Fabre Card
  1076. 68,4004,1 // Drops Card
  1077. 68,4005,1 // Santa Poring Card
  1078. 68,4006,1 // Lunatic Card
  1079. 68,4007,1 // Peco Peco Egg Card
  1080. 68,4017,1 // Savage Babe Card
  1081. 68,4018,1 // Andre Larva Card
  1082. 68,4019,1 // Hornet Card
  1083. 68,4020,1 // Familiar Card
  1084. 68,4024,1 // Plankton Card
  1085. 68,4025,1 // Skeleton Card
  1086. 68,4026,1 // Female Thief Bug Card
  1087. 68,4029,1 // Wolf Card
  1088. 68,4030,1 // Mandragora Card
  1089. 68,4035,1 // Hydra Card
  1090. 68,4037,1 // Snake Card
  1091. 68,4043,1 // Andre Card
  1092. 68,4049,1 // Vadon Card
  1093. 68,4055,1 // Marina Card
  1094. 68,4057,1 // Metaller Card
  1095. 68,4060,1 // Goblin Card
  1096. 68,4062,1 // Anacondaq Card
  1097. 68,4063,1 // Caramel Card
  1098. 68,4065,1 // Kaho Card
  1099. 68,4068,1 // Scorpion Card
  1100. 68,4069,1 // Drainliar Card
  1101. 68,4072,1 // Golem Card
  1102. 68,4076,1 // Magnolia Card
  1103. 68,4080,1 // Flora Card
  1104. 68,4082,1 // Desert Wolf Card
  1105. 68,4085,1 // Orc Skeleton Card
  1106. 68,4086,1 // Soldier Skeleton Card
  1107. 68,4092,1 // Skeleton Worker Card
  1108. 68,4094,1 // Archer Skeleton Card
  1109. 68,4096,1 // Zenorc Card
  1110. 68,4104,1 // Requiem Card
  1111. 68,4106,1 // Mummy Card
  1112. 68,4111,1 // Strouf Card
  1113. 68,4115,1 // Hunter Fly Card
  1114. 68,4117,1 // Sidewinder Card
  1115. 68,4118,1 // Earth Petite Card
  1116. 68,4125,1 // Deviace Card
  1117. 68,4126,1 // Minorous Card
  1118. 68,4130,1 // Scorpion King Card
  1119. 68,4140,1 // Abysmal Knight Card
  1120. 68,4153,1 // Crab Card
  1121. 68,4155,1 // Goblin Leader Card
  1122. 68,4156,1 // Goblin Steamrider Card
  1123. 68,4157,1 // Goblin Archer Card
  1124. 68,4163,1 // Gryphon Card
  1125. 68,4165,1 // Gig Card
  1126. 68,4167,1 // Nereid Card
  1127. 68,4171,1 // Dark Priest Card
  1128. 68,4172,1 // The Paper Card
  1129. 68,4176,1 // Dullahan Card
  1130. 68,4180,1 // Driller Card
  1131. 68,4182,1 // Diabolic Card
  1132. 68,4184,1 // Lava Golem Card
  1133. 68,4192,1 // Rotar Zairo Card
  1134. 68,4202,1 // Mao Guai Card
  1135. 68,4203,1 // Mutant Dragonoid Card
  1136. 68,4214,1 // Bloody Murderer Card
  1137. 68,4225,1 // Stone Shooter Card
  1138. 68,4246,1 // Assaulter Card
  1139. 68,4247,1 // Aster Card
  1140. 68,4251,1 // Elder Card
  1141. 68,4255,1 // Orc Lady Card
  1142. 68,4268,1 // Injustice Card
  1143. 68,4273,1 // Shell Fish Card
  1144. 68,4274,1 // Zombie Master Card
  1145. 68,4281,1 // Zipper Bear Card
  1146. 68,4284,1 // Chepet Card
  1147. 68,4289,1 // Caterpillar Card
  1148. 68,4291,1 // Kobold Leader Card
  1149. 68,4292,1 // Kobold Archer Card
  1150. 68,4297,1 // Cruiser Card
  1151. 68,4307,1 // Beetle King Card
  1152. 68,4308,1 // Tri Joint Card
  1153. 68,4310,1 // Panzer Goblin Card
  1154. 68,4312,1 // Seal Card
  1155. 68,4316,1 // False Angel Card
  1156. 68,4317,1 // Mobster Card
  1157. 68,4320,1 // Bloody Knight Card
  1158. 68,4323,1 // Hatii Babe Card
  1159. 68,4329,1 // Phendark Card
  1160. 68,4335,1 // Pitman Card
  1161. 68,4341,1 // Metaling Card
  1162. 68,4345,1 // Hill Wind Card
  1163. 68,4350,1 // Laurell Weinder Card
  1164. 68,4360,1 // Eremes Guile Card
  1165. 68,4362,1 // Howard Alt-Eisen Card
  1166. 68,4368,1 // Cecil Damon Card
  1167. 68,4380,1 // Red Ferus Card
  1168. 68,4388,1 // Death Word Card
  1169. 68,4390,1 // Breeze Card
  1170. 68,4394,1 // Lady Solace Card
  1171. 68,4395,1 // Maero of Thanatos Card
  1172. 68,4398,1 // Dolor of Thanatos Card
  1173. 68,4406,1 // Skeggiold Card
  1174. 68,4421,1 // Drosera Card
  1175. 68,4427,1 // Sword Guardian Card
  1176. 68,4428,1 // Bow Guardian Card
  1177. 68,4440,1 // Necromancer Card
  1178. 68,4452,1 // Centipede Larva Card
  1179. 68,4453,1 // Hillsrion Card
  1180. // Garment Card Album
  1181. 69,4015,32 // Condor Card
  1182. 69,4056,32 // Dustiness Card
  1183. 69,4071,32 // Orc Zombie Card
  1184. 69,4081,32 // Hode Card
  1185. 69,4088,32 // Frilldora Card
  1186. 69,4095,32 // Marse Card
  1187. 69,4102,32 // Whisper Card
  1188. 69,4108,32 // Myst Card
  1189. 69,4109,32 // Jakk Card
  1190. 69,4113,32 // Marionette Card
  1191. 69,4116,32 // Isis Card
  1192. 69,4129,32 // Bapho Jr. Card
  1193. 69,4133,32 // Raydric Card
  1194. 69,4159,32 // Nine Tail Card
  1195. 69,4174,1 // Deviling Card
  1196. 69,4178,32 // Dragon Tail Card
  1197. 69,4179,32 // Dragon Fly Card
  1198. 69,4183,1 // Vagabond Wolf Card
  1199. 69,4197,1 // Mastering Card
  1200. 69,4210,1 // Wanderer Card
  1201. 69,4211,1 // Vocal Card
  1202. 69,4266,32 // Eclipse Card
  1203. 69,4285,32 // Choco Card
  1204. 69,4287,32 // Kapha Card
  1205. 69,4303,32 // Giant Whisper Card
  1206. 69,4306,1 // Toad Card
  1207. 69,4313,32 // Punk Card
  1208. 69,4325,32 // Harpy Card
  1209. 69,4328,32 // Yao Jun Card
  1210. 69,4334,32 // Noxious Card
  1211. 69,4351,1 // Kavach Icarus Card
  1212. 69,4373,32 // Green Maiden Card
  1213. 69,4375,32 // Orc Baby Card
  1214. 69,4402,32 // Aliot Card
  1215. 69,4422,32 // Roween Card
  1216. 69,4429,32 // Salamander Card
  1217. 69,4431,32 // Kasa Card
  1218. 69,4432,33 // Magmaring Card
  1219. // Flamel Card
  1220. 70,545,1 // Condensed Red Potion
  1221. 70,546,1 // Condensed Yellow Potion
  1222. 70,547,1 // Condensed White Potion
  1223. //Candy Holder
  1224. IG_Candy_Holder,518,10 //Honey
  1225. IG_Candy_Holder,529,20 //Candy
  1226. IG_Candy_Holder,538,15 //Well_Baked_Cookie
  1227. IG_Candy_Holder,539,10 //Piece_Of_Cake
  1228. IG_Candy_Holder,580,20 //Bread
  1229. IG_Candy_Holder,603,1 //Old_Blue_Box
  1230. IG_Candy_Holder,607,1 //Yggdrasilberry
  1231. IG_Candy_Holder,616,1 //Old_Card_Album
  1232. IG_Candy_Holder,617,1 //Old_Violet_Box
  1233. IG_Candy_Holder,641,1 //Contracts_In_Shadow
  1234. IG_Candy_Holder,7460,10 //Niflheim_Ticket
  1235. IG_Candy_Holder,11550,5 //Pumpkin_Cake
  1236. IG_Candy_Holder,12192,5 //Pumpkin_Pie
  1237. //Lucky Bag
  1238. IG_Lucky_Bag,12018,8 //Fire_Cracker
  1239. IG_Lucky_Bag,663,6 //Korea_Rice_Cake
  1240. IG_Lucky_Bag,668,2 //Handsei
  1241. IG_Lucky_Bag,7647,3 //Taiwan_Luk_Coin
  1242. IG_Lucky_Bag,7649,1 //Big_Luk_Bookmark
  1243. //Holy Egg 2
  1244. IG_Holy_Egg_2,984,4 //Oridecon
  1245. IG_Holy_Egg_2,985,10 //Elunium
  1246. IG_Holy_Egg_2,547,30 //White_Slim_Potion
  1247. IG_Holy_Egg_2,505,30 //Blue_Potion
  1248. IG_Holy_Egg_2,607,3 //Yggdrasilberry
  1249. IG_Holy_Egg_2,608,2 //Seed_Of_Yggdrasil
  1250. IG_Holy_Egg_2,610,15 //Leaf_Of_Yggdrasil
  1251. IG_Holy_Egg_2,616,5 //Old_Card_Album
  1252. IG_Holy_Egg_2,5198,1 //Drooping_Bunny