create_arrow_db.txt 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. // Arrow Crafting Database
  2. //
  3. // Structure of Database:
  4. // SourceID,MakeID1,MakeAmount1,...,MakeID5,MakeAmount5
  5. //
  6. // 01. SourceID ID of the item, that is consumed by Arrow Crafting.
  7. // 02. MakeID ID of the item received from Arrow Crafting.
  8. // 03. MakeAmount Amount of MakeID item received from Arrow Crafting.
  9. // ...
  10. //
  11. // NOTE:
  12. // - Up to MAX_ARROW_RESULT (typically 5) ID/Amount pairs can be specified.
  13. // - To remove entry by importing, put 0 on 'MakeID'
  14. // Old Blue Box --> 50 Sharp Arrows, 50 Sleep Arrows
  15. 603,1764,50,1768,50
  16. // Dead Branch --> 40 Mute Arrows
  17. 604,1769,40
  18. // Amulet --> 40 Cursed Arrows
  19. 609,1761,40
  20. // Empty Bottle --> 2 Iron Arrows
  21. 713,1770,2
  22. // Emperium --> 600 Immaterial Arrows, 600 Mute Arrows, 600 Oridecon Arrows
  23. 714,1757,600,1769,600,1765,600
  24. // Yellow Gemstone --> 30 Stone Arrows, 1 Sleep Arrow
  25. 715,1756,30,1768,1
  26. // Red Gemstone --> 10 Rusty Arrows, 1 Poison Arrow, 1 Cursed Arrow
  27. 716,1762,10,1763,1,1761,1
  28. // Blue Gemstone --> 30 Crystal Arrows, 1 Frozen Arrow
  29. 717,1754,30,1759,1
  30. // Cursed Ruby --> 50 Cursed Arrows, 10 Sleep Arrows
  31. 724,1761,50,1768,10
  32. // Cracked Diamond --> 50 Sharp Arrows
  33. 733,1764,50
  34. // Rough Oridecon --> 50 Oridecon Arrows
  35. 756,1765,50
  36. // Rough Elunium --> 200 Steel Arrows, 5 Stun Arrows
  37. 757,1753,200,1758,5
  38. // Tree Root --> 7 Arrows
  39. 902,1750,7
  40. // Scorpion Tail --> 3 Rusty Arrows
  41. 904,1762,3
  42. // Jellopy --> 4 Arrows
  43. 909,1750,4
  44. // Garlet --> 12 Iron Arrows
  45. 910,1770,12
  46. // Scell --> 8 Steel Arrows
  47. 911,1753,8
  48. // Zargon --> 50 Silver Arrows
  49. 912,1751,50
  50. // Tooth of Bat --> 1 Shadow Arrow
  51. 913,1767,1
  52. // Wolf Claw --> 15 Iron Arrows
  53. 920,1770,15
  54. // Orc's Fang --> 30 Iron Arrows, 5 Steel Arrows, 10 Stone Arrows
  55. 922,1770,30,1753,5,1756,10
  56. // Evil Horn --> 20 Shadow Arrows, 10 Flash Arrows, 5 Stun Arrows
  57. 923,1767,20,1760,10,1758,5
  58. // Venom Canine --> 1 Poison Arrow
  59. 937,1763,1
  60. // Bee Sting --> 1 Rusty Arrow
  61. 939,1762,1
  62. // Horn --> 35 Iron Arrows
  63. 947,1770,35
  64. // Cactus Needle --> 50 Arrows
  65. 952,1750,50
  66. // Gill --> 80 Iron Arrows, 150 Crystal Arrows
  67. 956,1770,80,1754,150
  68. // Decayed Nail --> 1 Rusty Arrow, 1 Shadow Arrow
  69. 957,1762,1,1767,1
  70. // Horrendous Mouth --> 5 Shadow Arrows
  71. 958,1767,5
  72. // Stinky Scale --> 1 Poison Arrow
  73. 959,1763,1
  74. // Heroic Emblem --> 1 Oridecon Arrow, 5 Stun Arrows
  75. 968,1765,1,1758,5
  76. // Gold --> 50 Flash Arrows, 50 Oridecon Arrows
  77. 969,1760,50,1765,50
  78. // Oridecon --> 250 Oridecon Arrows
  79. 984,1765,250
  80. // Elunium --> 1000 Steel Arrows, 50 Stun Arrows
  81. 985,1753,1000,1758,50
  82. // Red Blood --> 600 Fire Arrows
  83. 990,1752,600
  84. // Crystal Blue --> 150 Crystal Arrows
  85. 991,1754,150
  86. // Wind of Verdure --> 150 Arrows of Wind
  87. 992,1755,150
  88. // Green Live --> 150 Stone Arrows
  89. 993,1756,150
  90. // Flame Heart --> 1800 Fire Arrows, 5 Mute Arrows
  91. 994,1752,1800,1769,5
  92. // Mystic Frozen --> 450 Crystal Arrows, 5 Frozen Arrows
  93. 995,1754,450,1759,5
  94. // Rough Wind --> 450 Arrows of Wind, 5 Sleep Arrows
  95. 996,1755,450,1768,5
  96. // Great Nature --> 450 Stone Arrows, 5 Flash Arrows
  97. 997,1756,450,1760,5
  98. // Iron --> 100 Iron Arrows
  99. 998,1770,100
  100. // Steel --> 100 Steel Arrows
  101. 999,1753,100
  102. // Star Crumb --> 30 Flash Arrows
  103. 1000,1760,30
  104. // Star Dust --> 10 Flash Arrows
  105. 1001,1760,10
  106. // Iron Ore --> 50 Iron Arrows
  107. 1002,1770,50
  108. // Coal --> 8 Shadow Arrows
  109. 1003,1767,8
  110. // Phracon --> 50 Iron Arrows
  111. 1010,1770,50
  112. // Emveretarcon --> 200 Iron Arrows, 40 Silver Arrows
  113. 1011,1770,200,1751,40
  114. // Mole Claw --> 50 Iron Arrows, 60 Stone Arrows
  115. 1018,1770,50,1756,60
  116. // Trunk --> 40 Arrows
  117. 1019,1750,40
  118. // Dokebi Horn --> 40 Iron Arrows, 2 Shadow Arrows
  119. 1021,1770,40,1767,2
  120. // Porcupine Quill --> 70 Arrows, 30 Stone Arrows
  121. 1027,1750,70,1756,30
  122. // Mantis Scythe --> 1 Sharp Arrow
  123. 1031,1764,1
  124. // Dragon Canine --> 1 Oridecon Arrow, 50 Iron Arrows
  125. 1035,1765,1,1770,50
  126. // Little Evil Horn --> 2 Cursed Arrows, 50 Iron Arrows
  127. 1038,1761,2,1770,50
  128. // Lantern --> 80 Iron Arrows
  129. 1041,1770,80
  130. // Orc Claw --> 10 Steel Arrows
  131. 1043,1753,10
  132. // Zenorc's Fang --> 5 Rusty Arrows
  133. 1044,1762,5
  134. // Ancient Tooth --> 20 Steel Arrows, 300 Crystal Arrows
  135. 1053,1753,20,1754,300
  136. // Fang --> 2 Sharp Arrows, 40 Silver Arrows
  137. 1063,1764,2,1751,40
  138. // Reins --> 100 Iron Arrows, 50 Steel Arrows
  139. 1064,1770,100,1753,50
  140. // Fine-grained Trunk --> 20 Arrows
  141. 1066,1750,20
  142. // Solid Trunk --> 20 Arrows
  143. 1067,1750,20
  144. // Barren Trunk --> 20 Arrows
  145. 1068,1750,20
  146. // Clock Hand --> 5 Sleep Arrows, 100 Arrows
  147. 1095,1768,5,1750,100
  148. // Manacles --> 50 Steel Arrows
  149. 1098,1753,50
  150. // Unicorn Horn --> 1000 Silver Arrows
  151. 2257,1751,1000
  152. // Opera Masque --> 200 Steel Arrows, 40 Mute Arrows
  153. 2281,1753,200,1769,40
  154. // Mr. Scream --> 200 Sharp Arrows, 300 Steel Arrows
  155. 2288,1764,200,1753,300
  156. // Welding Mask --> 200 Steel Arrows, 40 Stun Arrows
  157. 2292,1753,200,1758,40
  158. // Glittering Jacket --> 1000 Flash Arrows
  159. 2319,1760,1000
  160. // Wooden Mail --> 700 Arrows, 500 Iron Arrows
  161. 2328,1750,700,1770,500
  162. // Wooden Mail (Slotted) --> 1000 Arrows, 700 Iron Arrows
  163. 2329,1750,1000,1770,700
  164. // Silver Robe --> 700 Silver Arrows
  165. 2332,1751,700
  166. // Silver Robe (Slotted) --> 1000 Silver Arrows, 10 Immaterial Arrows
  167. 2333,1751,1000,1757,10
  168. // Shackles --> 700 Iron Arrows, 50 Steel Arrows
  169. 2408,1770,700,1753,50
  170. // Matyr's Leash --> 150 Arrows of Wind, 100 Steel Arrows, 10 Sharp Arrows
  171. 2618,1755,150,1753,100,1764,10
  172. // Fin Helm --> 600 Crystal Arrows, 200 Steel Arrows
  173. 5014,1754,600,1753,200
  174. // Ogre Tooth --> 30 Steel Arrows, 5 Rusty Arrows
  175. 7002,1753,30,1762,5
  176. // Stiff Horn --> 2 Stun Arrows
  177. 7008,1758,2
  178. // Tail of Steel Scorpion --> 250 Steel Arrows, 1 Poison Arrow
  179. 7010,1753,250,1763,1
  180. // Young Twig --> 1000 Mute Arrows
  181. 7018,1769,1000
  182. // Loki's Whispers --> 1000 Shadow Arrows
  183. 7019,1767,1000
  184. // Mother's Nightmare --> 1000 Cursed Arrows
  185. 7020,1761,1000
  186. // Foolishness of the Blind --> 200 Flash Arrows
  187. 7021,1760,200
  188. // Old Hilt --> 1000 Oridecon Arrows
  189. 7022,1765,1000
  190. // Blade of Darkness --> 600 Sharp Arrows, 200 Shadow Arrows
  191. 7023,1764,600,1767,200
  192. // Bloody Edge --> 600 Sharp Arrows, 200 Cursed Arrows
  193. 7024,1764,600,1761,200
  194. // Lucifer's Lament --> 800 Stun Arrows, 400 Mute Arrows, 800 Sleep Arrows
  195. 7025,1758,800,1769,400,1768,800
  196. // Key of the Clock Tower --> 50 Oridecon Arrows
  197. 7026,1765,50
  198. // Key of the Underground --> 100 Shadow Arrows
  199. 7027,1767,100
  200. // Matchstick --> 3000 Fire Arrows
  201. 7035,1752,3000
  202. // Fang of Garm --> 300 Crystal Arrows
  203. 7036,1754,300
  204. //New Ingredients
  205. // Ice Cubic --> 100 Crystal Arrows
  206. 7066,1754,100
  207. // Stone Fragment --> 50 Stone Arrows, 30 Stun Arrows
  208. 7067,1756,50,1758,30
  209. // Burnt Tree --> 250 Fire Arrows
  210. 7068,1752,250
  211. // Destroyed Armor --> 150 Steel Arrows
  212. 7069,1753,150
  213. // Burning Heart --> 150 Fire Arrows
  214. 7097,1752,150
  215. // Live Coal --> 100 Fire Arrows
  216. 7098,1752,100
  217. // Sharp Leaf --> 30 Sharp Arrows
  218. 7100,1764,30
  219. // Piece of Shield --> 100 Steel Arrows, 100 Oridecon Arrows, 300 Immaterial Arrows
  220. 7108,1753,100,1765,100,1757,300
  221. // Shining Spear Blade --> 100 Oridecon Arrows
  222. 7109,1765,100
  223. // Burning Horseshoe --> 100 Steel Arrows
  224. 7120,1753,100
  225. // Dragon Skin --> 10 Steel Arrows, 50 Cursed Arrows, 50 Mute Arrows
  226. 7123,1753,10,1761,50,1769,50
  227. // Piece of Bamboo --> 100 Arrows
  228. 7150,1750,100
  229. // Poisonous Toad Skin --> 20 Poison Arrows
  230. 7155,1763,20
  231. // Hard Feeler --> 20 Sharp Arrows
  232. 7163,1764,20
  233. // Solid Peach --> 30 Stun Arrows
  234. 7164,1758,30
  235. // Leopard Claw --> 10 Sharp Arrows
  236. 7172,1764,10
  237. // Armor Piece of Dullahan --> 150 Shadow Arrows
  238. 7210,1767,150
  239. // Tangled Chains --> 50 Steel Arrows, 50 Shadow Arrows
  240. 7221,1753,50,1767,50
  241. // Cat's Eye --> 200 Arrows of Wind
  242. 7263,1755,200
  243. // Dark Crystal Fragment --> 30 Cursed Arrows, 50 Shadow Arrows
  244. 7315,1761,30,1767,50
  245. // Insect Leg --> 10 Sharp Arrows, 50 Poison Arrows
  246. 7316,1764,10,1763,50
  247. // Old Pick --> 100 Rusty Arrows, 50 Steel Arrows
  248. 7318,1762,100,1753,50
  249. // Used Iron Plate --> 100 Rusty Arrows, 100 Steel Arrows
  250. 7319,1762,100,1753,100
  251. // Crystal Fragment --> 10 Flash Arrows, 30 Sleep Arrows
  252. 7321,1760,10,1768,30
  253. // Battered Kettle --> 50 Steel Arrows
  254. 7323,1753,50
  255. // Will of the Darkness --> 30 Cursed Arrows, 30 Poison Arrows, 50 Shadow Arrows
  256. 7340,1761,30,1763,30,1767,50
  257. // Golden Ornament --> 200 Silver Arrows, 300 Holy Arrows
  258. 7435,1751,200,1772,300
  259. // Cursed Seal --> 50 Cursed Arrows, 50 Mute Arrows
  260. 7442,1761,50,1769,50
  261. // Green Bijou --> 100 Stone Arrows, 80 Poison Arrows
  262. 7445,1756,100,1763,80
  263. // Blue Bijou --> 50 Arrows of Wind, 50 Crystal Arrows, 80 Frozen Arrows
  264. 7446,1755,50,1754,50,1759,80
  265. // Red Bijou --> 100 Fire Arrows, 80 Flash Arrows
  266. 7447,1752,100,1760,80
  267. // Yellow Bijou --> 50 Silver Arrows, 50 Immaterial Arrows, 80 Sleep Arrows
  268. 7448,1751,50,1757,50,1768,80
  269. // Skeletal Armor Piece --> 500 Immaterial Arrows, 200 Shadow Arrows, 100 Oridecon Arrows
  270. 7450,1757,500,1767,200,1765,100
  271. // Fire Dragon Scale --> 300 Fire Arrows, 300 Stun Arrows
  272. 7451,1752,300,1758,300
  273. // Valhalla's Flower --> 600 Immaterial Arrows, 600 Holy Arrows, 600 Sharp Arrows
  274. 7510,1757,600,1772,600,1764,600
  275. // Darkness Rune --> 300 Shadow Arrows, 150 Flash Arrows
  276. 7511,1767,300,1760,150
  277. // Ice Heart --> 50 Crystal Arrows, 50 Frozen Arrows
  278. 7561,1754,50,1759,50
  279. // Ice Scale --> 150 Crystal Arrows, 400 Frozen Arrows, 200 Mute Arrows
  280. 7562,1754,150,1759,400,1769,200
  281. // Will of Red Darkness --> 200 Cursed Arrows, 200 Poison Arrows, 100 Shadow Arrows
  282. 7566,1761,200,1763,200,1767,100
  283. // Clattering Skull --> 50 Shadow Arrows, 50 Cursed Arrows
  284. 7752,1767,50,1761,50
  285. // Broken Farm Tools --> 50 Rusty Arrows, 10 Iron Arrows, 20 Cursed Arrows
  286. 7753,1762,50,1770,10,1761,20