produce_db.txt 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682
  1. // Item Produce Database
  2. //
  3. // Structure of Database:
  4. // ID,ProduceItemID,ItemLV,RequireSkill,RequireSkillLv,MaterialID1,MaterialAmount1,......
  5. //
  6. // Notes:
  7. // - ID is used to identify item order that will be used for overwriting on db/import.
  8. // Value is started from 0 until 269 (MAX_PRODUCE_RESOURCE-1). Use same ID on import file to overwrite original result & requirements
  9. // - To remove entry by importing, put 0 on 'ProduceItemID'
  10. // - If MaterialAmount is 0, the player must have that item in their inventory (i.e. guides).
  11. // For example, Mine Bottle requires 0x Marine Sphere Creation Guide (ID 7131).
  12. //===== Weapon === ItemLV=1~3 ==================
  13. //---- One Handed Swords -----------------------
  14. //-- Sword <-- BS_SWORD & 2 Iron
  15. 0,1101,1,99,1,998,2
  16. //-- Falchion <-- BS_SWORD & 30 Iron
  17. 1,1104,1,99,1,998,30
  18. //-- Blade <-- BS_SWORD & 45 Iron, 25 Tooth of Bat
  19. 2,1107,1,99,1,998,45,913,25
  20. //-- Rapier <-- BS_SWORD & 20 Steel
  21. 3,1110,2,99,2,999,20
  22. //-- Scimiter <-- BS_SWORD & 35 Steel
  23. 4,1113,2,99,2,999,35
  24. //-- Ring Pommel Saber <-- BS_SWORD & 40 Steel, 50 Wolf Claw
  25. 5,1122,2,99,2,999,40,920,50
  26. //-- Saber <-- BS_SWORD & 5 Steel, 8 Oridecon, 1 Opal
  27. 6,1126,3,99,3,999,5,984,8,727,1
  28. //-- Haedongum <-- BS_SWORD & 8 Oridecon, 10 Steel, 1 Topaz
  29. 7,1123,3,99,3,984,8,999,10,728,1
  30. //-- Tsurugi <-- BS_SWORD & 8 Oridecon, 15 Steel, 1 Garnet
  31. 8,1119,3,99,3,984,8,999,15,718,1
  32. //-- Flamberge <-- BS_SWORD & 16 Oridecon, 1 Cursed Ruby
  33. 9,1129,3,99,3,984,16,724,1
  34. //----------------------------------------------
  35. //---- Daggers ---------------------------------
  36. //-- Knife <-- BS_DAGGER & 1 Iron, 10 Jellopies
  37. 10,1201,1,98,1,998,1,909,10
  38. //-- Cutter <-- BS_DAGGER & 25 Iron
  39. 11,1204,1,98,1,998,25
  40. //-- Main Gauge <-- BS_DAGGER & 50 Iron
  41. 12,1207,1,98,1,998,50
  42. //-- Dirk <-- BS_DAGGER & 17 Steel
  43. 13,1210,2,98,2,999,17
  44. //-- Dagger <-- BS_DAGGER & 30 Steel
  45. 14,1213,2,98,2,999,30
  46. //-- Stiletto <-- BS_DAGGER & 40 Steel
  47. 15,1216,2,98,2,999,40
  48. //-- Gladius <-- BS_DAGGER & 4 Oridecon, 40 Steel, 1 Sapphire
  49. 16,1219,3,98,3,984,4,999,40,726,1
  50. //-- Damascus <-- BS_DAGGER & 4 Oridecon, 60 Steel, 1 Zircon
  51. 17,1222,3,98,3,984,4,999,60,729,1
  52. //----------------------------------------------
  53. //---- Two Handed Swords -----------------------
  54. //-- Katana <-- BS_TWOHANDSWORD & 35 Iron, 15 Horrendous Mouth
  55. 18,1116,1,100,1,998,35,958,15
  56. //-- Slayer <-- BS_TWOHANDSWORD & 25 Steel, 20 Decayed Nail
  57. 19,1151,2,100,2,999,25,957,20
  58. //-- Bastard Sword <-- BS_TWOHANDSWORD & 45 Steel
  59. 20,1154,2,100,2,999,45
  60. //-- Two-Handed Sword <-- BS_TWOHANDSWORD & 12 Oridecon, 10 Steel
  61. 21,1157,3,100,3,984,12,999,10
  62. //-- Broad Sword <-- BS_TWOHANDSWORD & 12 Oridecon, 20 Steel
  63. 22,1160,3,100,3,984,12,999,20
  64. //-- Claymore <-- BS_TWOHANDSWORD & 16 Oridecon, 20 Steel, 1 Cracked Diamond
  65. 23,1163,3,100,3,984,16,999,20,733,1
  66. //----------------------------------------------
  67. //---- Axes ------------------------------------
  68. //-- Axe <-- BS_AXE & 10 Iron
  69. 24,1301,1,101,1,998,10
  70. //-- Battle Axe <-- BS_AXE & 110 Iron
  71. 25,1351,1,101,1,998,110
  72. //-- Hammer <-- BS_AXE & 30 Steel
  73. 26,1354,2,101,2,999,30
  74. //-- Buster <-- BS_AXE & 4 Oridecon, 20 Steel, 30 Orcish Fang
  75. 27,1357,3,101,3,984,4,999,20,922,30
  76. //-- Two-Handed Axe <-- BS_AXE & 8 Oridecon, 10 Steel, 1 Amthyst
  77. 28,1360,3,101,3,984,8,999,10,719,1
  78. //----------------------------------------------
  79. //---- Maces -----------------------------------
  80. //-- Club <-- BS_MACE & 3 Iron
  81. 29,1501,1,102,1,998,3
  82. //-- Mace <-- BS_MACE & 30 Iron
  83. 30,1504,1,102,1,998,30
  84. //-- Smasher <-- BS_MACE & 20 Steel
  85. 31,1507,2,102,2,999,20
  86. //-- Flail <-- BS_MACE & 33 Steel
  87. 32,1510,2,102,2,999,33
  88. //-- Chain <-- BS_MACE & 45 Steel
  89. 33,1519,2,102,2,999,45
  90. //-- Morning Star <-- BS_MACE & 85 Steel, 1 1 Carat Diamond
  91. 34,1513,3,102,3,999,85,730,1
  92. //-- Sword Mace <-- BS_MACE & 100 Steel, 20 Sharp Scale
  93. 35,1516,3,102,3,999,100,963,20
  94. //-- Stunner <-- BS_MACE & 120 Steel, 1 Heroic Emblem
  95. 36,1522,3,102,3,999,120,968,1
  96. //----------------------------------------------
  97. //---- Knucklebracers --------------------------
  98. //-- Waghnakh <-- BS_KNUCKLE & 160 Iron, 1 Pearl
  99. 37,1801,1,103,1,998,160,722,1
  100. //-- Knuckle Duster <-- BS_KNUCKLE & 50 Steel
  101. 38,1803,2,103,2,999,50
  102. //-- Hora <-- BS_KNUCKLE & 65 Steel
  103. 39,1805,2,103,2,999,65
  104. //-- Fist <-- BS_KNUCKLE & 4 Oridecon, 10 Ruby
  105. 40,1807,3,103,3,984,4,723,10
  106. //-- Claw <-- BS_KNUCKLE & 8 Oridecon, 10 Topaz
  107. 41,1809,3,103,3,984,8,728,10
  108. //-- Finger <-- BS_KNUCKLE & 4 Oridecon, 10 Opal
  109. 42,1811,3,103,3,984,4,727,10
  110. //----------------------------------------------
  111. //---- Spears ----------------------------------
  112. //-- Javelin <-- BS_SPEAR & 3 Iron
  113. 43,1401,1,104,1,998,3
  114. //-- Spear <-- BS_SPEAR & 35 Iron
  115. 44,1404,1,104,1,998,35
  116. //-- Pike <-- BS_SPEAR & 70 Iron
  117. 45,1407,1,104,1,998,70
  118. //-- Guisarme <-- BS_SPEAR & 25 Steel
  119. 46,1451,2,104,2,999,25
  120. //-- Glaive <-- BS_SPEAR & 40 Steel
  121. 47,1454,2,104,2,999,40
  122. //-- Partizan <-- BS_SPEAR & 55 Steel
  123. 48,1457,2,104,2,999,55
  124. //-- Trident <-- BS_SPEAR & 8 Oridecon, 10 Steel, 5 Aquamarine
  125. 49,1460,3,104,3,984,8,999,10,720,5
  126. //-- Halberd <-- BS_SPEAR & 12 Oridecon, 10 Steel
  127. 50,1463,3,104,3,984,12,999,10
  128. //-- Lance <-- BS_SPEAR & 12 Oridecon, 3 Ruby, 2 Evil Horn
  129. 51,1410,3,104,3,984,12,723,3,923,2
  130. //----------------------------------------------
  131. //==============================================
  132. //==============================================
  133. // COOKING RECIPES (LV= 11 -> 20)
  134. //==============================================
  135. //--------------------LEVEL 1-----------
  136. //-- Boiled Down Locust <-- 5 Grasshopper's Leg, 1 Old Frying Pan, 1 Cooking Oil
  137. 52,12041,11,0,0,7472,0,940,5,7031,1,7457,1
  138. //-- Herb Tea With Grape Juice <-- 3 Grape, 2 Red Potion
  139. 53,12046,11,0,0,7472,0,514,3,501,2
  140. //-- Steamed Crab Pincer <-- 10 Nipper, 10 Green Herb, 1 Yellow Potion
  141. 54,12051,11,0,0,7472,0,960,10,511,10,503,1
  142. //-- Frog Spawn Soup <-- 1 Grain, 10 Spawn, 1 Squid Ink
  143. 55,12056,11,0,0,7472,0,577,1,908,10,1024,1
  144. //-- Grape Juice with Honey <-- 1 Honey, 2 Grape, 1 Red Potion
  145. 56,12061,11,0,0,7472,0,518,1,514,2,501,1
  146. //-- Fried Monkey Tail <-- 5 Yoyo Tail, 1 Old Frying Pan, 1 Cooking Oil
  147. 57,12066,11,0,0,7472,0,942,5,7031,1,7457,1
  148. //--------------------LEVEL 2-----------
  149. //-- Seasoned Webs <-- 20 Sticky Webfoot, 10 Green Herb, 10 Yellow Herb, 1 Plain Sauce
  150. 58,12042,12,0,0,7473,0,918,20,511,10,508,10,7454,1
  151. //-- Sea Food <-- 10 Clam Flesh, 5 Gill, 5 Fin, 1 Yummy Fish
  152. 59,12052,12,0,0,7473,0,966,10,956,5,951,5,579,1
  153. //-- Black Tea <-- 5 Blue Herb, 10 Red Herb, 10 Yellow Herb
  154. 60,12047,12,0,0,7473,0,510,5,507,10,508,10
  155. //-- Smooth Noodle <-- 1 Grain, 1 Plain Sauce, 5 Jack o' Pumpkin, 3 Carrot
  156. 61,12057,12,0,0,7473,0,577,1,7454,1,1062,5,515,3
  157. //-- Chocolate Mousse Cake <-- 10 Cacao, 1 Piece of Cake, 1 Milk, 1 China
  158. 62,12062,12,0,0,7473,0,7182,10,539,1,519,1,736,1
  159. //-- Mixed Juice <-- 3 Apple Juice, 2 Carrot Juice, 1 Grape Juice, 2 Orange Juice
  160. 63,12067,12,0,0,7473,0,531,3,534,2,533,1,620,2
  161. //--------------------LEVEL 3-----------
  162. //-- Fruit Punch <-- 5 Apple, 5 Banana, 5 Orange, 5 Strawberry, 1 Yellow Spice
  163. 64,12063,13,0,0,7474,0,512,5,513,5,582,5,578,5,7452,1
  164. //-- Herb and Honey Tea <-- 2 Honey, 10 White Herb, 1 Yellow Spice
  165. 65,12048,13,0,0,7474,0,518,2,509,10,7452,1
  166. //-- Bomber Steak <-- 4 Meat, 1 Old Frying Pan, 10 Green Herb, 5 Red Chili, 1 Hot Sauce
  167. 66,12043,13,0,0,7474,0,517,4,7031,1,511,10,7286,5,7455,1
  168. //-- Clam Soup <-- 20 Clam Flesh, 10 Conch, 1 Honey, 1 Sweet Sauce
  169. 67,12053,13,0,0,7474,0,966,20,961,10,518,1,7453,1
  170. //-- Tentacle and Cheese Gratin <-- 10 Tentacle, 10 Cheese, 5 Yam, 1 Sweet Sauce
  171. 68,12058,13,0,0,7474,0,962,10,548,10,549,5,7453,1
  172. //-- Fried Sweet Potato with Syrup <-- 10 Potato, 10 Yam, 1 Sweet Potato, 1 Sweet Sauce
  173. 69,12068,13,0,0,7474,0,516,10,549,10,633,1,7453,1
  174. //--------------------LEVEL 4-----------
  175. //-- Morocc Fruit Wine <-- 10 Strawberry, 4 Lemon, 10 Orange, 2 Alcohol, 5 Grape
  176. 70,12049,14,0,0,7475,0,578,10,568,4,582,10,970,2,514,5
  177. //-- Seasoned Jellyfish <-- 30 Tentacle, 10 White Herb, 10 Soft Blade Grass, 1 Old Frying Pan, 20 Squid Ink
  178. 71,12054,14,0,0,7475,0,962,30,509,10,7194,10,7031,1,1024,20
  179. //-- Rib with Herbs and Spices <-- 5 Meat, 3 Red Herb, 2 Yellow Herb, 3 Green Herb, 1 Sweet Sauce, 1 Lemon
  180. 72,12044,14,0,0,7475,0,517,5,507,3,508,2,511,3,7453,1,568,1
  181. //-- Cream Sandwich <-- 5 Bread, 15 Milk, 10 Cheese, 10 Yellow Herb, 1 Meat, 1 Sweet Sauce
  182. 73,12064,14,0,0,7475,0,580,5,519,15,548,10,508,10,517,1,7453,1
  183. //-- Lutie Mixed Cold Noodles <-- 3 Grain, 1 Hot Sauce, 10 Ice Cubic, 10 Carrot, 10 Jack o' Pumpkin
  184. 74,12059,14,0,0,7475,0,577,3,7455,1,7066,10,515,10,1062,10
  185. //-- Ancient Fish Dish <-- 10 Ancient Lips, 10 Raccoon Leaf, 10 White Herb,5 Yummy Fish, 2 Sweet Sauce
  186. 75,12069,14,0,0,7475,0,1054,10,945,10,509,10,579,5,7453,2
  187. //--------------------LEVEL 5-----------
  188. //-- Mastela Wine <-- 4 Mastela Fruit, 1 Blue Potion, 2 Alcohol, 2 Lemon, 1 Yellow Spice
  189. 76,12050,15,0,0,7476,0,522,4,505,1,970,2,568,2,7452,1
  190. //-- Lutie Plat Cake <-- 10 Potato, 2 Honey, 1 Cooking Oil, 3 Carrot, 1 Grain
  191. 77,12045,15,0,0,7476,0,516,10,518,2,7457,1,515,3,577,1
  192. //-- Green Salad <-- 2 Hinalle Leaflet, 3 Aloe Leaflet, 10 Sharp Leaf, 6 Huge Leaf, 1 Sweet Sauce, 1 Yellow Spice
  193. 78,12065,15,0,0,7476,0,520,2,521,3,7100,10,7198,6,7453,1,7452,1
  194. //-- Steamed Bat Wing and Pumpkin <-- 20 Wing of Red Bat, 20 Jack o' Pumpkin, 1 Pot, 10 Hinalle Leaflet, 10 Red Herb
  195. 79,12060,15,0,0,7476,0,7006,20,1062,20,7482,1,520,10,507,10
  196. //-- Peppery Roasted Dumpling <-- 20 Bao, 10 Yellow Herb, 1 Hot Sauce, 1 Red Spice, 20 Green Herb
  197. 80,12055,15,0,0,7476,0,553,20,508,10,7455,1,7456,1,511,20
  198. //-- Broiled Down Scorpion <-- 20 Scorpion Tail, 10 Bug Leg, 10 Huge Leaf, 2 Old Frying Pan, 1 Cooking Oil
  199. 81,12070,15,0,0,7476,0,904,20,1042,10,7198,10,7031,2,7457,1
  200. //--------------------LEVEL 6-----------
  201. //-- Flavored Grilled Beef <-- 10 Meat, 2 Honey, 1 Yellow Herb, 1 Mastela Fruit, 20 Shining Scale
  202. 82,12071,16,0,0,7477,0,517,10,518,2,508,1,522,1,954,20
  203. //-- Red Mushroom Wine <-- 3 Mushroom, 3 Grape Juice, 20 Mushroom Spore, 1 Alcohol, 1 Red Spice
  204. 83,12076,16,0,0,7477,0,581,3,533,3,921,20,970,1,7456,1
  205. //-- Peach Cake <-- 20 Solid Peach, 10 Piece of Cake, 10 Cheese, 10 Milk, 5 Orange Juice, 1 Sweet Sauce
  206. 84,12091,16,0,0,7477,0,7164,20,539,10,548,10,519,10,620,5,7453,1
  207. //-- Chili and Prawn Gratin <-- 20 Red Chile, 20 Shrimp, 1 Sweet Sauce, 20 Lemon
  208. 85,12086,16,0,0,7477,0,7286,20,567,20,7453,1,568,20
  209. //-- Very Bitter Invigorant <-- 20 Brown Root, 10 Maneater Root, 20 Mushroom Spore, 1 Mushroom, 2 Honey
  210. 86,12081,16,0,0,7477,0,7188,20,1033,10,921,20,581,1,518,2
  211. //-- Soup of Great Luck <-- 5 Reptile Tongue, 5 Tongue, 10 Clover, 10 Witch Starsand, 1 Aloe
  212. 87,12096,16,0,0,7477,0,903,5,1015,5,705,10,1061,10,704,1
  213. //--------------------LEVEL 7-----------
  214. //-- Barbecue <-- 10 Meat, 1 Live Coal, 2 Coal, 1 Hot Sauce, 15 Trunk, 10 White Herb
  215. 88,12072,17,0,0,7478,0,517,10,7098,1,1003,2,7455,1,1019,15,509,10
  216. //-- Royal Jelly and Herb Tea <-- 4 Royal Jelly, 2 Honey, 5 White Herb, 10 Hinalle Leaflet, 1 Yellow Spice
  217. 89,12077,17,0,0,7478,0,526,4,518,2,509,5,520,10,7452,1
  218. //-- Soul Hunt Bread <-- 10 Bread, 5 Mastela Fruit, 1 Sweet Sauce, 5 Ment, 5 Amulet, 2 Unripe Apple
  219. 90,12092,17,0,0,7478,0,580,10,522,5,7453,1,708,5,609,5,619,2
  220. //-- Boiled Vegetable stuffed with Roasted Crocodile <-- 10 Anolian Skin, 10 Jack o' Pumpkin, 10 Carrot, 10 Aloe Leaflet, 10 Yellow Herb, 1 Yellow Spice
  221. 91,12087,17,0,0,7478,0,7003,10,1062,10,515,10,521,10,508,10,7452,1
  222. //-- Sumptuous Feast <-- 10 Fish Tail, 5 Aloe Leaflet, 10 Mane, 2 Yummy Fish, 10 Pet Food, 1 Sweet Sauce
  223. 92,12082,17,0,0,7478,0,1023,10,521,5,1028,10,579,2,537,10,7453,1
  224. //-- Grilled Meat Skewer <-- 10 Scale Shell, 5 Gill, 10 Soft Blade of Grass, 5 Meat, 10 Mushroom, 10 Clam Flesh
  225. 93,12097,17,0,0,7478,0,936,10,956,5,7194,10,517,5,581,10,966,10
  226. //--------------------LEVEL 8-----------
  227. //-- Bear Foot Dish <-- 20 Bear's Footskin, 10 Carrot, 10 Jack o' Pumpkin, 2 Aloe Leaflet, 1 Hinalle Leaflet, 1 Plain Sauce
  228. 94,12073,18,0,0,7479,0,948,20,515,10,1062,10,521,2,520,1,7454,1
  229. //-- Royal Tea <-- 4 Prickly Fruit, 10 Hinalle Leaflet, 3 Yggdrasil Leaf, 10 Aloe Leaflet, 6 Royal Jelly, 1 Yellow Spice
  230. 95,12078,18,0,0,7479,0,576,4,520,10,610,3,521,10,526,6,7452,1
  231. //-- Special Toast <-- 10 Bread, 2 Royal Jelly, 5 Meat, 10 Strawberry, 1 Hot Sauce, 10 Cheese, 1 Sweet Sauce
  232. 96,12093,18,0,0,7479,0,580,10,526,2,517,5,578,10,7455,1,548,10,7453,1
  233. //-- Very Hot Curry <-- 1 Aloevera, 1 Hot Sauce, 10 Meat, 10 Hinalle Leaflet, 10 Jack o' Pumpkin, 10 Carrot
  234. 97,12088,18,0,0,7479,0,606,1,7455,1,517,10,520,10,1062,10,515,10
  235. //-- Huge Stuffed Leaves <-- 20 Fig Leaf, 20 Meat, 5 Rainbow Carrot, 10 Jack o' Pumpkin, 1 Plain Sauce, 2 Grain
  236. 98,12083,18,0,0,7479,0,7298,20,517,20,622,5,1062,10,7454,1,577,2
  237. //-- Strawberry Rice Ball <-- 10 Strawberry, 5 Grain, 10 Fig Leaf, 1 Yellow Spice, 2 Red Spice, 1 Plain Sauce
  238. 99,12098,18,0,0,7479,0,578,10,577,5,7298,10,7452,1,7456,2,7454,1
  239. //--------------------LEVEL 9-----------
  240. //-- Sauted Meat Strips <-- 40 Tendon, 1 Pot, 10 Cheese, 1 Hot Sauce, 2 Coal, 30 Green Herb, 10 Squid Ink
  241. 100,12074,19,0,0,7480,0,1050,40,7482,1,548,10,7455,1,1003,2,511,30,1024,10
  242. //-- Tristan 12 <-- 10 Yggdrasil Leaf, 10 Orange, 5 Alcohol, 4 Royal Jelly, 2 Blue Potion, 1 Yellow Spice, 10 Aloe Leaflet
  243. 101,12079,19,0,0,7480,0,610,10,582,10,970,5,526,4,505,2,7452,1,521,10
  244. //-- Ethereal Fruit Juice <-- 5 Unripe Apple, 10 Orange, 10 Strawberry, 1 Red Spice, 1 Tropica Banana, 5 Grape Juice, 2 Alcohol
  245. 102,12094,19,0,0,7480,0,619,5,582,10,578,10,7456,1,634,1,533,5,970,2
  246. //-- Delicious Boiled Meats <-- 10 Meat, 5 Royal Jelly, 20 Shoot, 4 Plain Sauce, 5 Yellow Herb, 10 White Herb, 5 Red Herb
  247. 103,12089,19,0,0,7480,0,517,10,526,5,711,20,7454,4,508,5,509,10,507,5
  248. //-- Ascending Dragon Broth <-- 10 Dragon Skin, 20 Dragon Tail, 3 Yggdrasil Leaf, 6 Royal Jelly, 1 Hot Sauce, 1 Red Spice, 1 Fatty Chubby Earthworm
  249. 104,12084,19,0,0,7480,0,7123,10,1037,20,610,3,526,6,7455,1,7456,1,632,1
  250. //-- Blood Flavored Sodapop <-- 1 Animal Gore, 2 Anodyne, 2 Aloevera, 2 Alcohol, 6 Royal Jelly, 1 Red Spice, 10 Apple Juice
  251. 105,12099,19,0,0,7480,0,702,1,605,2,606,2,970,2,526,6,7456,1,531,10
  252. //--------------------LEVEL 10-----------
  253. //-- Tongue Dish <-- 20 Tongue, 1 Pot, 1 Alcohol, 2 Aloevera, 1 Hot Sauce, 5 Royal Jelly, 10 Yggdrasil Leaf, 2 Blue Potion
  254. 106,12075,20,0,0,7481,0,1015,20,7482,1,970,1,606,2,7455,1,526,5,610,10,505,2
  255. //-- Dragon Breath Cocktail <-- 10 Maneater Root, 1 Singing Plant, 5 Aloe Leaflet, 5 Royal Jelly, 5 Lemon, 5 Prickly Fruit, 1 Yggdrasilberry, 10 Blue Herb
  256. 107,12080,20,0,0,7481,0,1033,10,707,1,521,5,526,5,568,5,576,5,607,1,510,10
  257. //-- Wine of Bergelmir <-- 1 Yggdrasilberry, 10 Ice Cubic, 10 Bacillus, 4 Royal Jelly, 3 Concentration Potion, 5 Alcohol, 2 Prickly Fruit, 1 Illusion Flower
  258. 108,12095,20,0,0,7481,0,607,1,7066,10,7119,10,526,4,645,3,970,5,576,2,710,1
  259. //-- Hot Sand Steamed Scorpion <-- 20 Scorpion Tail, 20 Scorpion Claw, 2 Aloevera, 3 Yggdrasil Leaf, 3 Bitter Herb, 10 Royal Jelly , 1 Hot Sauce, 1 Pot
  260. 109,12090,20,0,0,7481,0,904,20,7125,20,606,2,610,3,621,3,526,10,7455,1,7482,1
  261. //-- Stew of Immortality <-- 20 Immortal Heart, 10 Memento, 1 Yggdrasil Seed, 2 Anodyne, 10 Heart of Mermaid, 2 Hot Sauce, 10 Amulet, 2 Bitter Herb
  262. 110,12085,20,0,0,7481,0,929,20,934,10,608,1,605,2,950,10,7455,2,609,10,621,2
  263. //-- Nine Tail Dish <-- 10 Nine Tails, 2 Four Leaf Clover, 10 Maneater Root, 10 Sharp Leaf, 4 Yggdrasil Leaf, 1 Plain Sauce, 1 Yellow Spice, 2 Izidor
  264. 111,12100,20,0,0,7481,0,1022,10,706,2,1033,10,7100,10,610,4,7454,1,7452,1,709,2
  265. //==============================================
  266. //===== Stones and Metals === ItemLV=21 ========
  267. //---- Metals ----------------------------------
  268. //-- Iron <-- BS_IRON & 1 Iron Ore
  269. 112,998,21,94,1,1002,1
  270. //-- Steel <-- BS_STEEL & 5 Iron, 1 Coal
  271. 113,999,21,95,1,998,5,1003,1
  272. //----------------------------------------------
  273. //---- Enchanted Stones ------------------------
  274. //-- Star Crumb <-- BS_ENCHANTEDSTONE & 10 Star Dust
  275. 114,1000,21,96,1,1001,10
  276. //-- Flame Heart <-- BS_ENCHANTEDSTONE & 10 Red Blood
  277. 115,994,21,96,1,990,10
  278. //-- Mystic Frozen <-- BS_ENCHANTEDSTONE & 10 Crystal Blue
  279. 116,995,21,96,1,991,10
  280. //-- Rough Wind <-- BS_ENCHANTEDSTONE & 10 Wind of Verdure
  281. 117,997,21,96,1,993,10
  282. //-- Great Nature <-- BS_ENCHANTEDSTONE & 10 Green Live
  283. 118,996,21,96,1,992,10
  284. //----------------------------------------------
  285. //==============================================
  286. //===== Potions === ItemLV=22 ==================
  287. //---- Health Potions --------------------------
  288. //-- Red Potion <-- AM_PHARMACY & Potion Creation Guide & 1 Red Herb, 1 Empty Potion Bottle
  289. 119,501,22,228,1,7144,0,507,1,1093,1
  290. //-- Yellow Potion <-- AM_PHARMACY & Potion Creation Guide & 1 Yellow Herb, 1 Empty Potion Bottle
  291. 120,503,22,228,1,7144,0,508,1,1093,1
  292. //-- White Potion <-- AM_PHARMACY & Potion Creation Guide & 1 White Herb, 1 Empty Potion Bottle
  293. 121,504,22,228,1,7144,0,509,1,1093,1
  294. //-- Blue Potion <-- AM_PHARMACY & Potion Creation Guide & 1 Blue Herb, 1 Scell, 1 Empty Potion Bottle
  295. 122,505,22,228,1,7144,0,510,1,911,1,1093,1
  296. //-- Condensed Red Potion <-- AM_PHARMACY & Condensed Potion Creation Guide & 1 Red Potion, 1 Empty Testtube, 1 Cactus Needle
  297. 123,545,22,228,1,7133,0,501,1,1092,1,952,1
  298. //-- Condensed Yellow Potion <-- AM_PHARMACY & Condensed Potion Creation Guide & 1 Yellow Potion, 1 Empty Testtube, 1 Mole Whiskers
  299. 124,546,22,228,1,7133,0,503,1,1092,1,1017,1
  300. //-- Condensed White Potion <-- AM_PHARMACY & Condensed Potion Creation Guide & 1 White Potion, 1 Empty Testtube, 1 Witched Starsand
  301. 125,547,22,228,1,7133,0,504,1,1092,1,1061,1
  302. //----------------------------------------------
  303. //---- Skill-related Mixtures ------------------
  304. //-- Holy Water <-- AL_HOLYWATER & 1 Empty Bottle
  305. 126,523,22,31,1,713,1
  306. //-- Deadly Poison Bottle <-- ASC_CDP & 1 Venom Canine, 1 Cactus Needle, 1 Bee Sting, 1 Poison Spore, 1 Karvodailnirol, 1 Berserk Potion, 1 Empty Bottle
  307. 127,678,22,407,1,937,1,952,1,939,1,7033,1,972,1,657,1,713,1
  308. //-- Bottle Grenade <-- AM_PHARMACY & Bottle Grenade Creation Guide & 1 Alcohol, 1 Fabric, 1 Empty Bottle
  309. 128,7135,22,228,1,7128,0,970,1,1059,1,713,1
  310. //-- Acid Bottle <-- AM_PHARMACY & Acid Bottle Creation Guide & 1 Empty Bottle, 1 Immortal Heart
  311. 129,7136,22,228,1,7129,0,713,1,929,1
  312. //-- Plant Bottle <-- AM_PHARMACY & Plant Bottle Creation Guide & 1 Empty Bottle, 2 Maneater Blossom
  313. 130,7137,22,228,1,7130,0,713,1,1032,2
  314. //-- Marine Sphere Bottle <-- AM_PHARMACY & Marine Sphere Creation Guide & 1 Empty Bottle, 1 Tendon, 1 Detonator
  315. 131,7138,22,228,1,7131,0,713,1,1050,1,1051,1
  316. //-- Glistening Coat <-- AM_PHARMACY & Glistening Coat Creation Guide & 1 Alcohol, 1 Heart of Mermaid, 1 Zenorcs Fang, 1 Empty Bottle
  317. 132,7139,22,228,1,7132,0,970,1,950,1,1044,1,713,1
  318. //----------------------------------------------
  319. //---- Elemental-resist Potions ----------------
  320. //-- Resist Fire Potion <-- AM_PHARMACY & Elemental Potion Creation Guide & 2 Frill, 1 Red Gemstone, 1 Empty Potion Bottle
  321. 133,12118,22,228,1,7434,0,1012,2,716,1,1093,1
  322. //-- Resist Water Potion <-- AM_PHARMACY & Elemental Potion Creation Guide & 3 Heart of Mermaid, 1 Blue Gemstone, 1 Empty Potion Bottle
  323. 134,12119,22,228,1,7434,0,950,3,717,1,1093,1
  324. //-- Resist Earth Potion <-- AM_PHARMACY & Elemental Potion Creation Guide & 2 Large Jellopy, 1 Yellow Gemstone, 1 Empty Potion Bottle
  325. 135,12120,22,228,1,7434,0,7126,2,715,1,1093,1
  326. //-- Resist Wind Potion <-- AM_PHARMACY & Elemental Potion Creation Guide & 1 3 Moth Dust, 1 Blue Gemstone, 1 Empty Potion Bottle
  327. 136,12121,22,228,1,7434,0,1057,3,717,1,1093,1
  328. //----------------------------------------------
  329. //---- Misc ------------------------------------
  330. //-- Anodyne <-- AM_PHARMACY & Potion Creation Guide & 1 Ment, 1 Alcohol, 1 Empty Bottle
  331. 137,605,22,228,1,7144,0,708,1,970,1,713,1
  332. //-- Aloevera <-- AM_PHARMACY & Potion Creation Guide & 1 Aloe, 1 Honey, 1 Empty Bottle
  333. 138,606,22,228,1,7144,0,704,1,518,1,713,1
  334. //-- Alcohol <-- AM_PHARMACY & Alcohol Creation Guide & 1 Empty Bottle, 5 Poison Spore, 5 Stem, 1 Empty Testtube
  335. 139,970,22,228,1,7127,0,713,1,7033,5,905,5,1092,1
  336. //-- Embryo <-- AM_PHARMACY & Potion Creation Guide & 1 Seed of Life, 1 Morning Dew of Yggdrasil, 1 Glass Tube
  337. 140,7142,22,228,1,7144,0,7140,1,7141,1,7143,1
  338. //----------------------------------------------
  339. //==============================================
  340. //===== Elemental Converters === ItemLV=23 =====
  341. //-- Fire Elemental Converter <-- SA_CREATECON & 1 Blank Scroll, 3 Scorpion Tail
  342. 141,12114,23,1007,1,7433,1,904,3
  343. //-- Water Elemental Converter <-- SA_CREATECON & 1 Blank Scroll, 3 Snail's Shell
  344. 142,12115,23,1007,1,7433,1,946,3
  345. //-- Earth Elemental Converter <-- SA_CREATECON & 1 Blank Scroll, 3 Horn
  346. 143,12116,23,1007,1,7433,1,947,3
  347. //-- Wind Elemental Converter <-- SA_CREATECON & 1 Blank Scroll, 3 Rainbow Shell
  348. 144,12117,23,1007,1,7433,1,1013,3
  349. //==============================================
  350. //===== Ancilla And Runes === ItemLV=24 ========
  351. //---- Ancilla ---------------------------------
  352. //-- Ancilla <-- AB_ANCILLA & 1 Blue Gemstone
  353. 145,12333,24,2039,1,717,1
  354. //---- Rune Stones -----------------------------
  355. //-- Runstone Nosiege <-- RK_RUNEMASTERY Lv8, 1 Broken Armor Piece, 1 Old Magic Circle, 1 Light Granule, 1 Elder Branch
  356. 146,12725,24,2010,8,7069,1,7099,1,7938,1,7939,1
  357. //-- Runstone Rhydo <-- RK_RUNEMASTERY Lv7, 1 Red Gemstone, 1 Light Granule, 1 Elder Branch
  358. 147,12726,24,2010,7,716,1,7938,1,7939,1
  359. //-- Runstone Verkana <-- RK_RUNEMASTERY Lv9, 1 Dullahan Armor, 1 Elder Branch
  360. 148,12727,24,2010,9,7210,1,7939,1
  361. //-- Runstone Isia <-- RK_RUNEMASTERY Lv2, 1 Burning Heart, 1 Elder Branch
  362. 149,12728,24,2010,2,7097,1,7939,1
  363. //-- Runstone Asir <-- RK_RUNEMASTERY Lv5, 1 Ogre Tooth, 1 Light Granule, 1 Elder Branch
  364. 150,12729,24,2010,5,7002,1,7938,1,7939,1
  365. //-- Runstone Urj <-- RK_RUNEMASTERY Lv6, 1 Honey, 1 Slender Snake, 1 Elder Branch
  366. 151,12730,24,2010,6,518,1,1048,1,7939,1
  367. //-- Runstone Turisus <-- RK_RUNEMASTERY Lv1, 1 Cobold Hair, 1 Claw Of Desert Wolf, 1 Elder Branch
  368. 152,12731,24,2010,1,1034,1,7030,1,7939,1
  369. //-- Runstone Pertz <-- RK_RUNEMASTERY Lv3, 1 Dragon Canine, 1 Tangled Chain, 1 Light Granule, 1 Elder Branch
  370. 153,12732,24,2010,3,1035,1,7221,1,7938,1,7939,1
  371. //-- Runstone Hagalas <-- RK_RUNEMASTERY Lv4, 1 Round Shell, 1 Dragon's Skin, 1 Elder Branch
  372. 154,12733,24,2010,4,1096,1,7123,1,7939,1
  373. //-- Runstone Lux Anima <-- RK_RUNEMASTERY Lv10, 3 Gold, 3 Light Granule
  374. 155,22540,24,2010,10,969,3,7938,3
  375. //==============================================
  376. //===== Guillotine Cross Poisons === ItemLv=25 =
  377. //-- Guillotine Antidote <-- GC_RESEARCHNEWPOISON Lv5, 1 White Herb, 1 Blue Herb, 2 Green Herb
  378. 156,6128,25,2024,5,509,1,510,1,511,2
  379. //-- Poison Paralysis <-- GC_RESEARCHNEWPOISON Lv1, 1 Medicine Bowl, 20 Poison Toad's Skin, 1 Poison Kit, 1 Poison Herb Amoena
  380. 157,12717,25,2024,1,7134,1,7155,20,7931,1,7937,1
  381. //-- Poison Leech <-- GC_RESEARCHNEWPOISON Lv4, 1 Medicine Bowl, 1 Poison Kit, 1 Poison Herb Nerium, 1 Poison Herb Scopolia
  382. 158,12718,25,2024,4,7134,1,7931,1,7932,1,7936,1
  383. //-- Poison Oblivion <-- GC_RESEARCHNEWPOISON Lv9, 1 Izidor, 10 Heart Of Mermaid, 1 Medicine Bowl, 1 Poison Kit
  384. 159,12719,25,2024,9,709,1,950,10,7134,1,7931,1
  385. //-- Poison Contamination <-- GC_RESEARCHNEWPOISON Lv3, 25 Decayed Nail, 1 Medicine Bowl, 1 Poison Kit, 1 Poison Herb Seratum
  386. 160,12720,25,2024,3,957,25,7134,1,7931,1,7935,1
  387. //-- Poison Numb <-- GC_RESEARCHNEWPOISON Lv8, 1 Medicine Bowl, 10 Sticky Poison, 1 Poison Kit, 1 Poison Herb Nerium
  388. 161,12721,25,2024,8,7134,1,7565,10,7931,1,7932,1
  389. //-- Poison Fever <-- GC_RESEARCHNEWPOISON Lv2, 20 Anolian Skin, 1 Medicine Bowl, 1 Poison Kit, 1 Poison Herb Rantana
  390. 162,12722,25,2024,2,7003,20,7134,1,7931,1,7933,1
  391. //-- Poison Laughing <-- GC_RESEARCHNEWPOISON Lv7, 10 Poison Spore, 1 Medicine Bowl, 1 Poison Kit, 1 Poison Herb Makulata
  392. 163,12723,25,2024,7,7033,10,7134,1,7931,1,7934,1
  393. //-- Poison Fatigue <-- GC_RESEARCHNEWPOISON Lv6, 1 Izidor, 1 Medicine Bowl, 10 Sticky Poison, 1 Poison Kit
  394. 164,12724,25,2024,6,709,1,7134,1,7565,10,7931,1
  395. //==============================================
  396. //==============================================
  397. // Genetic Foods And Potions (LV= 26 -> 29)
  398. //==============================================
  399. //----- Change Material ---- ItemLV=26 ---------
  400. //-- Sacred Masque <-- GN_CHANGEMATERIAL Lv1, 45 Grasshopper's Leg, 35 Yoyo Tail
  401. 165,1045,26,2494,1,940,45,942,35
  402. //-- Long Hair <-- GN_CHANGEMATERIAL Lv1, 40 Pencil Case, 5 Tiger's Skin
  403. 166,1020,26,2494,1,738,40,1029,5
  404. //-- Phracon <-- GN_CHANGEMATERIAL Lv1, 45 Spawn, 40 Glass Bead
  405. 167,1010,26,2494,1,908,45,746,40
  406. //-- Lantern <-- GN_CHANGEMATERIAL Lv1, 10 Solid Shell, 20 Blossom Of Maneater
  407. 168,1041,26,2494,1,943,10,1032,20
  408. //-- Acorn <-- GN_CHANGEMATERIAL Lv1, 30 Cactus Needle, 10 Snail's Shell
  409. 169,1026,26,2494,1,952,30,946,10
  410. //-- Frozen Heart <-- GN_CHANGEMATERIAL Lv1, 25 Raccoondog Doll, 35 Moth Dust
  411. 170,1008,26,2494,1,754,25,1057,35
  412. //-- Horrendous Mouth <-- GN_CHANGEMATERIAL Lv1, 45 Stem, 45 Dragon Scale
  413. 171,958,26,2494,1,905,45,1036,45
  414. //-- Detrimindexta <-- GN_CHANGEMATERIAL Lv1, 40 Chrysalis, 10 Flesh Of Clam
  415. 172,971,26,2494,1,915,40,966,10
  416. //-- Detonator <-- GN_CHANGEMATERIAL Lv1, 45 Nose Ring, 25 Feather Of Birds
  417. 173,1051,26,2494,1,941,45,916,25
  418. //-- Tweezer <-- GN_CHANGEMATERIAL Lv1, 40 Worm Peelings, 5 Monkey Doll
  419. 174,1046,26,2494,1,955,40,753,5
  420. //-- Petite DiablOfs Horn <-- GN_CHANGEMATERIAL Lv1, 5 Stone Heart, 10 Resin
  421. 175,1038,26,2494,1,953,5,907,10
  422. //-- Root Of Maneater <-- GN_CHANGEMATERIAL Lv1, 25 Talon, 20 Tooth Of
  423. 176,1033,26,2494,1,917,25,1044,20
  424. //-- Conch <-- GN_CHANGEMATERIAL Lv1, 5 Gill, 25 Immortal Heart
  425. 177,961,26,2494,1,956,5,929,25
  426. //-- Rotten Scale <-- GN_CHANGEMATERIAL Lv1, 20 Shell, 50 Thin N' Long Tongue
  427. 178,959,26,2494,1,935,20,1015,50
  428. //-- Elder Pixie's Beard <-- GN_CHANGEMATERIAL Lv1, 35 Bee Sting, 45 Petite DiablOfs Wing
  429. 179,1040,26,2494,1,939,35,1039,45
  430. //-- Lizard Scruff <-- GN_CHANGEMATERIAL Lv1, 20 Scale Of Snakes, 15 Karvodailnirol
  431. 180,1012,26,2494,1,926,20,972,15
  432. //-- Emveretarcon <-- GN_CHANGEMATERIAL Lv1, 5 Heart Of Mermaid, 40 Grasshopper Doll
  433. 181,1011,26,2494,1,950,5,752,40
  434. //-- Chinese Ink <-- GN_CHANGEMATERIAL Lv1, 20 Bear's Foot, 25 Black Ladle
  435. 182,1024,26,2494,1,948,20,737,25
  436. //-- Spiderweb <-- GN_CHANGEMATERIAL Lv1, 50 Fin, 35 Slender Snake
  437. 183,1025,26,2494,1,951,50,1048,35
  438. //-- Reins <-- GN_CHANGEMATERIAL Lv1, 30 Chonchon Doll, 50 Stuffed Doll
  439. 184,1064,26,2494,1,742,30,740,50
  440. //-- Wooden Block <-- GN_CHANGEMATERIAL Lv1, 10 Rotten Bandage, 10 Single Cell
  441. 185,1019,26,2494,1,930,10,1052,10
  442. //-- Tentacle <-- GN_CHANGEMATERIAL Lv1, 40 Decayed Nail, 5 Wild Boar's Mane
  443. 186,962,26,2494,1,957,40,1028,5
  444. //-- Mixture <-- GN_CHANGEMATERIAL Lv1, 15 Posionous Canine, 30 Powder Of Butterfly
  445. 187,974,26,2494,1,937,15,924,30
  446. //-- Colorful Shell <-- GN_CHANGEMATERIAL Lv1, 50 Horn, 45 Zargon
  447. 188,1013,26,2494,1,947,50,912,45
  448. //-- Wing Of Moth <-- GN_CHANGEMATERIAL Lv1, 20 Frozen Rose, 30 Reptile Tongue
  449. 189,1058,26,2494,1,749,20,903,30
  450. //-- Nipper <-- GN_CHANGEMATERIAL Lv1, 25 Sticky Mucus, 40 Earthworm Peeling
  451. 190,960,26,2494,1,938,25,1055,40
  452. //-- Turtle Shell <-- GN_CHANGEMATERIAL Lv1, 5 Fluff, 40 Poring Doll
  453. 191,967,26,2494,1,914,5,741,40
  454. //-- Nail Of Orc <-- GN_CHANGEMATERIAL Lv1, 50 Raccoon Leaf, 10 Garlet
  455. 192,1043,26,2494,1,945,50,910,10
  456. //-- Dragon Canine <-- GN_CHANGEMATERIAL Lv1, 50 Osiris Doll, 35 Sticky Webfoot
  457. 193,1035,26,2494,1,751,50,918,35
  458. //-- Skirt Of Virgin <-- GN_CHANGEMATERIAL Lv1, 30 Scales Shell, 35 Head Of Medusa
  459. 194,1049,26,2494,1,936,30,1047,35
  460. //-- Dragon Train <-- GN_CHANGEMATERIAL Lv1, 25 Tooth Of Bat, 35 Sharpened Cuspid
  461. 195,1037,26,2494,1,913,25,1063,35
  462. //-- Dokkaebi Horn <-- GN_CHANGEMATERIAL Lv1, 15 Shining Scales, 25 Lip Of Ancient Fish
  463. 196,1021,26,2494,1,954,15,1054,25
  464. //-- Grit <-- GN_CHANGEMATERIAL Lv1, 35 Crystal Mirror, 50 Limb Of Mantis
  465. 197,1056,26,2494,1,747,35,1031,50
  466. //-- Sharp Scale <-- GN_CHANGEMATERIAL Lv1, 10 Horseshoe, 20 Clam Shell
  467. 198,963,26,2494,1,944,10,965,20
  468. //-- Short Leg <-- GN_CHANGEMATERIAL Lv1, 20 Claw Of Wolves, 45 Scell
  469. 199,1042,26,2494,1,920,20,911,45
  470. //-- Starsand Of Witch <-- GN_CHANGEMATERIAL Lv1, 10 Insect Feeler, 15 Blue Porcelain
  471. 200,1061,26,2494,1,928,10,735,15
  472. //-- Fox Tail <-- GN_CHANGEMATERIAL Lv1, 10 Animal's Skin, 15 Rouge
  473. 201,1022,26,2494,1,919,10,739,15
  474. //-- Cobold Hair <-- GN_CHANGEMATERIAL Lv1, 45 Jellopy, 20 Wedding Bouquet
  475. 202,1034,26,2494,1,909,45,745,20
  476. //-- Jaws Of Ant <-- GN_CHANGEMATERIAL Lv1, 20 Spore Doll, 20 Witherless Rose
  477. 203,1014,26,2494,1,743,20,748,20
  478. //-- Voucher Of Orcish Hero <-- GN_CHANGEMATERIAL Lv1, 5 Tree Root, 45 Nail Of Mole
  479. 204,968,26,2494,1,902,5,1018,45
  480. //-- Sacred Marks <-- GN_CHANGEMATERIAL Lv1, 10 Scorpion's Tail, 30 Pumpkin Head
  481. 205,1009,26,2494,1,904,10,1062,30
  482. //-- Alchol <-- GN_CHANGEMATERIAL Lv1, 50 Orcish Voucher, 40 Skel Bone
  483. 206,970,26,2494,1,931,50,932,40
  484. //-- Crap Shell <-- GN_CHANGEMATERIAL Lv1, 50 Baphomet Doll, 30 Fish Tail
  485. 207,964,26,2494,1,750,50,1023,30
  486. //-- Tendon <-- GN_CHANGEMATERIAL Lv1, 25 Orcish Cuspid, 5 Feather
  487. 208,1050,26,2494,1,922,25,949,5
  488. //-- Tiger Footskin <-- GN_CHANGEMATERIAL Lv1, 5 Pointed Scale, 20 White Platter
  489. 209,1030,26,2494,1,906,5,736,20
  490. //-- Hinalle <-- GN_CHANGEMATERIAL Lv1, 45 Bunch Of Flowers, 40 Moustache Of Mole
  491. 210,703,26,2494,1,744,45,1017,40
  492. //-- Counteragent <-- GN_CHANGEMATERIAL Lv1, 15 Evil Horn, 30 Mementos
  493. 211,973,26,2494,1,923,15,934,30
  494. //-- Tooth Of Ancient Fish <-- GN_CHANGEMATERIAL Lv1, 35 Bill Of Birds, 30 Transparent Cloth
  495. 212,1053,26,2494,1,925,35,1059,30
  496. //-- Rat Tail <-- GN_CHANGEMATERIAL Lv1, 35 Mushroom Spore, 40 Golden Hair
  497. 213,1016,26,2494,1,921,35,1060,40
  498. //-- Coal <-- GN_CHANGEMATERIAL Lv1, 1 Guard
  499. 214,1003,26,2494,1,2101,1
  500. //-- Steel <-- GN_CHANGEMATERIAL Lv1, 1 Tsurugi
  501. 215,999,26,2494,1,1119,1
  502. //-- Cigar <-- GN_CHANGEMATERIAL Lv1, 1 Orcish Axe
  503. 216,2267,26,2494,1,1304,1
  504. //-- Bone Wand <-- GN_CHANGEMATERIAL Lv1, 100 Clattering Skull, 100 Broken Farming Utensil
  505. 217,1615,26,2494,1,7752,100,7753,100
  506. //-- Cigar <-- GN_CHANGEMATERIAL Lv1, 1 Orcish Axe, 100 Orcish Voucher
  507. 218,2267,26,2494,1,1304,1,931,100
  508. //-- Starsand Of Witch <-- GN_CHANGEMATERIAL Lv1, 100 Moth Dust, 100 Scell
  509. 219,1061,26,2494,1,1057,100,911,100
  510. //-- Soft Feather <-- GN_CHANGEMATERIAL Lv1, 30 Feather, 30 Feather Of Birds
  511. 220,7063,26,2494,1,949,30,916,30
  512. //-- Wind Of Verdure <-- GN_CHANGEMATERIAL Lv1, 100 Ice Piece
  513. 221,992,26,2494,1,7066,100
  514. //-- Crystal Blue <-- GN_CHANGEMATERIAL Lv1, 100 Claw Of Wolves
  515. 222,991,26,2494,1,920,100
  516. //-- Soft Silk Cloth <-- GN_CHANGEMATERIAL Lv1, 10 Transparent Cloth
  517. 223,7166,26,2494,1,1059,10
  518. //-- Transparent Cloth <-- GN_CHANGEMATERIAL Lv1, 2 Soft Silk Cloth
  519. 224,1059,26,2494,1,7166,2
  520. //-- Boost500 To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Empty Potion, 10 Boost500, 10 Flexible String
  521. 225,13269,26,2494,1,1093,10,12417,10,7200,10
  522. //-- Full SwingK To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Empty Potion, 10 Full SwingK, 10 Flexible String
  523. 226,13270,26,2494,1,1093,10,12418,10,7200,10
  524. //-- Mana Plus To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Empty Potion, 10 Mana Plus, 10 Flexible String
  525. 227,13271,26,2494,1,1093,10,12419,10,7200,10
  526. //-- Cure Free To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Empty Potion, 10 Cure Free, 10 Flexible String
  527. 228,13272,26,2494,1,1093,10,12475,10,7200,10
  528. //-- Stamina Up M To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Empty Potion, 10 Stamina Up M, 10 Flexible String
  529. 229,13273,26,2494,1,1093,10,12420,10,7200,10
  530. //-- Digestive F To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Empty Potion, 10 Digestive F, 10 Flexible String
  531. 230,13274,26,2494,1,1093,10,12421,10,7200,10
  532. //-- HP Inc PotS To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Bottle To Throw, 10 HP Increase PotionS
  533. 231,13275,26,2494,1,6297,10,12422,10
  534. //-- HP Inc PotM To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Bottle To Throw, 10 HP Increase PotionM
  535. 232,13276,26,2494,1,6297,10,12423,10
  536. //-- HP Inc PotL To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Bottle To Throw, 10 HP Increase PotionL
  537. 233,13277,26,2494,1,6297,10,12424,10
  538. //-- SP Inc PotS To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Bottle To Throw, 10 SP Increase PotionS
  539. 234,13278,26,2494,1,6297,10,12425,10
  540. //-- SP Inc PotM To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Bottle To Throw, 10 SP Increase PotionM
  541. 235,13279,26,2494,1,6297,10,12426,10
  542. //-- SP Inc PotL To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Bottle To Throw, 10 SP Increase PotionL
  543. 236,13280,26,2494,1,6297,10,12427,10
  544. //-- En White PotZ To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Bottle To Throw, 10 Enrich White PotionZ
  545. 237,13281,26,2494,1,6297,10,12428,10
  546. //-- Vitata500 To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Bottle To Throw, 10 Vitata500
  547. 238,13282,26,2494,1,6297,10,12436,10
  548. //-- En Cel Juice To Throw <-- GN_CHANGEMATERIAL Lv1, 10 Bottle To Throw, 10 Enrich Celermine Juice
  549. 239,13283,26,2494,1,6297,10,12437,10
  550. //==============================================
  551. //---- Mix Cooking --- ItemLV=27 ---------------
  552. //-- Savage BBQ <-- GN_MIX_COOKING Lv1, Mix Cook Book, 1 Melange Pot, 1 Savage Meat, 1 Cooking Skewer, 1 Black Charcoal
  553. 240,12429,27,2495,1,11022,0,6248,1,6249,1,6250,1,6251,1
  554. //-- Wug Blood Cocktail <-- GN_MIX_COOKING Lv1, Mix Cook Book, 1 Melange Pot, 3 Wolf Blood, 2 Cold Ice
  555. 241,12430,27,2495,1,11022,0,6248,1,6252,3,6253,2
  556. //-- Minor Brisket <-- GN_MIX_COOKING Lv1, Mix Cook Book, 1 Melange Pot, 2 Beef Head Meat, 1 Large Cookpot
  557. 242,12431,27,2495,1,11022,0,6248,1,6254,2,6255,1
  558. //-- Siroma Icetea <-- GN_MIX_COOKING Lv1, Mix Cook Book, 1 Melange Pot, 3 Ice Fragment, 2 Ice Crystal, 1 Comodo Tropic Fruit
  559. 243,12432,27,2495,1,11022,0,6248,1,6256,3,6257,2,6258,1
  560. //-- Drocera Herb Stew <-- GN_MIX_COOKING Lv1, Mix Cook Book, 3 Red Herb, 3 White Herb, 3 Blue Herb, 1 Melange Pot, 1 Large Cookpot, 1 Drocera Tentacle
  561. 244,12433,27,2495,1,11022,0,507,3,509,3,510,3,6248,1,6255,1,6259,3
  562. //-- Petti Tail Noodle <-- GN_MIX_COOKING Lv1, Mix Cook Book, 1 Melange Pot, 2 Petti Tail, 1 Fine Noodle, 1 Cool Gravy
  563. 245,12434,27,2495,1,11022,0,6248,1,6260,2,6261,1,6262,1
  564. //---- Create Bomb --- ItemLV=28 ---------------
  565. //-- Apple Bomb <-- GN_MAKEBOMB Lv1, Apple Bomb CB, 1 Apple, 1 Scell, 1 Detonator, 1 Gun Powder
  566. 246,13260,28,2496,1,6279,0,512,1,911,1,1051,1,6244,1
  567. //-- Coconut Bomb <-- GN_MAKEBOMB Lv1, Coconut Bomb CB, 1 Detonator, 1 Coconut Fruit, 2 Gun Powder
  568. 247,13261,28,2496,1,6281,0,1051,1,6263,1,6244,2
  569. //-- Melon Bomb <-- GN_MAKEBOMB Lv1, Melon Bomb CB, 1 Sticky Mucus, 1 Detonator, 2 Gun Powder, 1 Melon
  570. 248,13262,28,2496,1,6282,0,938,1,1051,1,6244,2,6264,1
  571. //-- Pineapple Bomb <-- GN_MAKEBOMB Lv1, Pinepple Bomb CB, 1 Cactus Needle, 1 Detonator, 3 Gun Powder, 1 Pineapple
  572. 249,13263,28,2496,1,6280,0,952,1,1051,1,6244,3,6265,1
  573. //-- Banana Bomb <-- GN_MAKEBOMB Lv1, Banana Bomb CB, 1 Banana, 1 Detonator, 4 Gun Powder, 1 Mould Powder
  574. 250,13264,28,2496,1,6283,0,513,1,1051,1,6244,4,7001,1
  575. //---- Special Pharmacy --- ItemLV=29 ----------
  576. //-- Seed Of Horny Plant <-- GN_S_PHARMACY Lv1, Plant Genetic Grow, 10 Prickly Fruit
  577. 251,6210,29,2497,1,6284,0,576,10
  578. //-- Bloodsuck Plant Seed <-- GN_S_PHARMACY Lv1, Plant Genetic Grow, 10 Root Of Maneater
  579. 252,6211,29,2497,1,6284,0,1033,10
  580. //-- Bomb Mushroom Spore <-- GN_S_PHARMACY Lv1, Plant Genetic Grow, 10 Mushroom Spore, 2 Gun Powder, 5 Poison Spore
  581. 253,6212,29,2497,1,6284,0,921,10,6244,2,7033,5
  582. //-- HP Increase Potion (Small) <-- GN_S_PHARMACY Lv1, Increase Stamina Study, 10 White Herb, 5 Monster's Feed, 10 Empty Bottle, 1 Hot Sauce
  583. 254,12422,29,2497,1,11023,0,509,10,528,5,713,10,7455,1
  584. //-- HP Increase Potion (Medium) <-- GN_S_PHARMACY Lv1, Increase Stamina Study, 10 Yellow Herb, 10 White Herb, 10 Empty Bottle, 1 Hot Sauce
  585. 255,12423,29,2497,1,11023,0,508,10,509,10,713,10,7455,1
  586. //-- HP Increase Potion (Large) <-- GN_S_PHARMACY Lv1, Increase Stamina Study, 15 White Herb, 3 Fruit Of Mastela, 1 Holy Water, 10 Empty Bottle, 1 Hot Sauce
  587. 256,12424,29,2497,1,11023,0,509,15,522,3,523,1,713,10,7455,1
  588. //-- SP Increase Potion (Small) <-- GN_S_PHARMACY Lv1, Vital Drink CB, 10 Grape, 10 Lemon, 10 Empty Bottle, 1 Sweet Sauce
  589. 257,12425,29,2497,1,11024,0,514,10,568,10,713,10,7453,1
  590. //-- SP Increase Potion (Medium) <-- GN_S_PHARMACY Lv1, Vital Drink CB, 10 Blue Herb, 10 Honey, 10 Empty Bottle, 1 Sweet Sauce
  591. 258,12426,29,2497,1,11024,0,510,10,518,10,713,10,7453,1
  592. //-- SP Increase Potion (Large) <-- GN_S_PHARMACY Lv1, Vital Drink CB, 15 Blue Herb, 10 Royal Jelly, 10 Empty Bottle, 1 Sweet Sauce
  593. 259,12427,29,2497,1,11024,0,510,15,526,10,713,10,7453,1
  594. //-- Enrich White Potion Z <-- GN_S_PHARMACY Lv1, Quality Potion Book, 20 White Potion, 10 White Herb, 1 Alchol, 10 Empty Cylinder
  595. 260,12428,29,2497,1,6285,0,504,20,509,10,970,1,1092,10
  596. //-- Vitata 500 <-- GN_S_PHARMACY Lv1, Quality Potion Book, 10 Blue Herb, 10 Grape, 10 Honey, 10 Empty Cylinder
  597. 261,12436,29,2497,1,6285,0,510,10,514,10,518,10,1092,10
  598. //-- Enrich Celermine Juice <-- GN_S_PHARMACY Lv1, Quality Potion Book, 5 Center Potion, 5 Awakening Potion, 10 Empty Cylinder, 5 Hot Sauce
  599. 262,12437,29,2497,1,6285,0,645,5,656,5,1092,10,7455,5
  600. //-- Cure Free <-- GN_S_PHARMACY Lv1, Quality Potion Book, 20 Green Herb, 1 Fruit Of Mastela, 5 Panacea, 1 Leaf Of Yggdrasil, 10 Empty Cylinder
  601. 263,12475,29,2497,1,6285,0,511,20,522,1,525,5,610,1,1092,10
  602. //===============================================
  603. //--------------------LEVEL 30-----------
  604. // Novice Red Potion (569) <-- 2 Red Herbs, 1 Apple
  605. 264,569,30,0,0,11058,0,507,2,512,1
  606. // Novice Magnifier (12325) <-- 3 Fine-grained Trunk, 1 Jellopy
  607. 265,12325,30,0,0,11058,0,1066,3,909,1
  608. // Novice Fly Wing (12323) <-- 2 Fluffs, 2 Feathers, 2 Jellopies
  609. 266,12323,30,0,0,11058,0,914,2,949,2,909,2
  610. // Novice Cutter (13040) <-- 10 Shells, 10 Worm Peelings, 1 Phracon
  611. 267,13040,30,0,0,11058,0,935,10,955,10,1010,1
  612. // Little Unripe Apple (12846) <-- 1 Apple, 1 Green Herb
  613. 268,12846,30,0,0,11058,0,512,1,511,1
  614. // Four Leaf Clover (706) <-- 200 Clovers, 200 Sticky Mucus
  615. 269,706,30,0,0,11058,0,705,200,938,200
  616. // Banana Juice (532) <-- 1 Banana, 1 Milk
  617. 270,532,30,0,0,11058,0,513,1,519,1
  618. // Apple Juice (531) <-- 1 Apple, 1 Milk
  619. 271,531,30,0,0,11058,0,512,1,519,1
  620. // Carrot Juice (534) <-- 1 Carrot, 1 Milk
  621. 272,534,30,0,0,11058,0,515,1,519,1
  622. // Grape Juice (533) <-- 1 Grape, 1 Milk
  623. 273,533,30,0,0,11058,0,514,1,519,1
  624. // Unripe Apple (619) <-- 10 Sticky Mucus, 20 Green Herbs, 10 Apples
  625. 274,619,30,0,0,11058,0,938,10,511,20,512,10