merchant_shopids.sql 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. DROP TABLE IF EXISTS `merchant_shopids`;
  2. CREATE TABLE `merchant_shopids` (
  3. `shop_id` mediumint(7) unsigned NOT NULL DEFAULT '0',
  4. `npc_id` varchar(5) DEFAULT NULL,
  5. PRIMARY KEY (`shop_id`)
  6. );
  7. INSERT INTO `merchant_shopids` VALUES
  8. -- Golem shop
  9. (13128001,'13128'),
  10. -- General Shops
  11. (3000100,'30001'),
  12. (3000101,'30001'),
  13. (3000200,'30002'),
  14. (3000201,'30002'),
  15. (3000300,'30003'),
  16. (3000301,'30003'),
  17. (3000400,'30004'),
  18. (3004700,'30047'),
  19. (3006000,'30060'),
  20. (3006001,'30060'),
  21. (3006002,'30060'),
  22. (3006003,'30060'),
  23. (3006100,'30061'),
  24. (3006101,'30061'),
  25. (3006102,'30061'),
  26. (3006103,'30061'),
  27. (3006200,'30062'),
  28. (3006201,'30062'),
  29. (3006202,'30062'),
  30. (3006300,'30063'),
  31. (3006301,'30063'),
  32. (3007800,'30078'),
  33. (3008100,'30081'),
  34. (3008101,'30081'),
  35. (3008200,'30082'),
  36. (3008201,'30082'),
  37. (3008202,'30082'),
  38. (3008400,'30084'),
  39. (3008401,'30084'),
  40. (3008500,'30085'),
  41. (3008501,'30085'),
  42. (3008700,'30087'),
  43. (3008701,'30087'),
  44. (3008800,'30088'),
  45. (3008801,'30088'),
  46. (3009000,'30090'),
  47. (3009001,'30090'),
  48. (3009100,'30091'),
  49. (3009101,'30091'),
  50. (3009300,'30093'),
  51. (3009400,'30094'),
  52. (3009401,'30094'),
  53. (3009402,'30094'),
  54. (3013500,'30135'),
  55. (3013501,'30135'),
  56. (3013600,'30136'),
  57. (3013601,'30136'),
  58. (3013700,'30137'),
  59. (3013800,'30138'),
  60. (3013801,'30138'),
  61. (3014700,'30147'),
  62. (3014701,'30147'),
  63. (3014800,'30148'),
  64. (3014801,'30148'),
  65. (3014900,'30149'),
  66. (3014901,'30149'),
  67. (3015000,'30150'),
  68. (3016300,'30163'),
  69. (3016400,'30164'),
  70. (3016500,'30165'),
  71. (3016501,'30165'),
  72. (3016502,'30165'),
  73. (3016600,'30166'),
  74. (3016601,'30166'),
  75. (3017800,'30178'),
  76. (3017801,'30178'),
  77. (3017802,'30178'),
  78. (3017803,'30178'),
  79. (3017900,'30179'),
  80. (3017901,'30179'),
  81. (3017902,'30179'),
  82. (3017903,'30179'),
  83. (3018000,'30180'),
  84. (3018001,'30180'),
  85. (3018100,'30181'),
  86. (3018101,'30181'),
  87. (3018102,'30181'),
  88. (3020700,'30207'),
  89. (3020701,'30207'),
  90. (3020702,'30207'),
  91. (3020703,'30207'),
  92. (3020800,'30208'),
  93. (3020801,'30208'),
  94. (3020802,'30208'),
  95. (3020803,'30208'),
  96. (3020900,'30209'),
  97. (3023000,'30230'),
  98. (3023001,'30230'),
  99. (3023002,'30230'),
  100. (3023003,'30230'),
  101. (3023100,'30231'),
  102. (3023101,'30231'),
  103. (3025300,'30253'),
  104. (3025301,'30253'),
  105. (3025302,'30253'),
  106. (3025303,'30253'),
  107. (3025400,'30254'),
  108. (3025401,'30254'),
  109. (3029400,'30294'),
  110. (3029401,'30294'),
  111. (3030100,'30301'),
  112. (3030101,'30301'),
  113. (3031300,'30313'),
  114. (3031400,'30314'),
  115. (3031401,'30314'),
  116. (3031402,'30314'),
  117. (3031500,'30315'),
  118. (3032100,'30321'),
  119. (3032101,'30321'),
  120. (3032102,'30321'),
  121. (3032103,'30321'),
  122. (3038700,'30387'),
  123. (3042000,'30420'),
  124. (3043600,'30436'),
  125. (3043700,'30437'),
  126. (3051600,'30516'),
  127. (3051601,'30516'),
  128. (3051700,'30517'),
  129. (3051701,'30517'),
  130. (3051800,'30518'),
  131. (3051900,'30519'),
  132. (3051901,'30519'),
  133. (3055800,'30558'),
  134. (3055801,'30558'),
  135. (3055900,'30559'),
  136. (3055901,'30559'),
  137. (3056000,'30560'),
  138. (3056001,'30560'),
  139. (3056100,'30561'),
  140. (3068400,'30684'),
  141. (3068401,'30684'),
  142. (3068402,'30684'),
  143. (3068403,'30684'),
  144. (3073100,'30731'),
  145. (3082700,'30827'),
  146. (3082800,'30828'),
  147. (3082900,'30829'),
  148. (3083000,'30830'),
  149. (3083100,'30831'),
  150. (3083400,'30834'),
  151. (3083401,'30834'),
  152. (3083700,'30837'),
  153. (3083701,'30837'),
  154. (3083702,'30837'),
  155. (3083703,'30837'),
  156. (3083800,'30838'),
  157. (3083801,'30838'),
  158. (3083802,'30838'),
  159. (3083803,'30838'),
  160. (3083900,'30839'),
  161. (3084000,'30840'),
  162. (3084100,'30841'),
  163. (3084101,'30841'),
  164. (3084102,'30841'),
  165. (3084200,'30842'),
  166. (3084201,'30842'),
  167. (3086900,'30869'),
  168. (3087900,'30879'),
  169. (3089000,'30890'),
  170. (3089001,'30890'),
  171. (3089002,'30890'),
  172. (3089003,'30890'),
  173. (3089100,'30891'),
  174. (3089101,'30891'),
  175. (3089102,'30891'),
  176. (3089103,'30891'),
  177. (3089200,'30892'),
  178. (3089201,'30892'),
  179. (3089202,'30892'),
  180. (3089300,'30893'),
  181. (3089301,'30893'),
  182. (3104400,'31044'),
  183. (3104500,'31045'),
  184. (3106700,'31067'),
  185. (3125600,'31256'),
  186. (3125601,'31256'),
  187. (3125700,'31257'),
  188. (3125701,'31257'),
  189. (3125800,'31258'),
  190. (3125801,'31258'),
  191. (3125900,'31259'),
  192. (3125901,'31259'),
  193. (3126000,'31260'),
  194. (3126001,'31260'),
  195. (3126100,'31261'),
  196. (3126101,'31261'),
  197. (3126200,'31262'),
  198. (3126300,'31263'),
  199. (3126301,'31263'),
  200. (3126500,'31265'),
  201. (3127400,'31274'),
  202. (3130000,'31300'),
  203. (3130001,'31300'),
  204. (3130002,'31300'),
  205. (3130003,'31300'),
  206. (3130100,'31301'),
  207. (3130101,'31301'),
  208. (3130102,'31301'),
  209. (3130103,'31301'),
  210. (3130200,'31302'),
  211. (3130201,'31302'),
  212. (3130202,'31302'),
  213. (3130203,'31302'),
  214. (3130300,'31303'),
  215. (3130301,'31303'),
  216. (3130302,'31303'),
  217. (3130303,'31303'),
  218. (3130400,'31304'),
  219. (3130401,'31304'),
  220. (3130500,'31305'),
  221. (3130501,'31305'),
  222. (3130600,'31306'),
  223. (3130700,'31307'),
  224. (3130701,'31307'),
  225. (3130900,'31309'),
  226. (3131800,'31318'),
  227. (3131900,'31319'),
  228. (3135100,'31351'),
  229. (3136600,'31366'),
  230. (3138600,'31386'),
  231. (3141300,'31413'),
  232. (3141400,'31414'),
  233. (3141500,'31415'),
  234. (3141600,'31416'),
  235. (3141700,'31417'),
  236. (3141800,'31418'),
  237. (3141900,'31419'),
  238. (3142000,'31420'),
  239. (3142100,'31421'),
  240. (3142200,'31422'),
  241. (3142300,'31423'),
  242. (3142400,'31424'),
  243. (3142500,'31425'),
  244. (3142600,'31426'),
  245. (3142700,'31427'),
  246. (3142800,'31428'),
  247. (3142900,'31429'),
  248. (3143000,'31430'),
  249. (3143100,'31431'),
  250. (3143200,'31432'),
  251. (3143300,'31433'),
  252. (3143400,'31434'),
  253. (3143500,'31435'),
  254. (3143600,'31436'),
  255. (3143700,'31437'),
  256. (3143800,'31438'),
  257. (3143900,'31439'),
  258. (3144000,'31440'),
  259. (3144100,'31441'),
  260. (3144200,'31442'),
  261. (3144300,'31443'),
  262. (3144400,'31444'),
  263. (3144500,'31445'),
  264. (3166600,'31666'),
  265. (3166700,'31667'),
  266. (3166800,'31668'),
  267. (3166900,'31669'),
  268. (3167000,'31670'),
  269. (3194500,'31945'),
  270. (3194501,'31945'),
  271. (3194502,'31945'),
  272. (3194503,'31945'),
  273. (3194600,'31946'),
  274. (3194601,'31946'),
  275. (3194602,'31946'),
  276. (3194603,'31946'),
  277. (3194700,'31947'),
  278. (3194701,'31947'),
  279. (3194702,'31947'),
  280. (3194703,'31947'),
  281. (3194800,'31948'),
  282. (3194801,'31948'),
  283. (3194802,'31948'),
  284. (3194803,'31948'),
  285. (3194900,'31949'),
  286. (3194901,'31949'),
  287. (3195000,'31950'),
  288. (3195001,'31950'),
  289. (3195100,'31951'),
  290. (3195200,'31952'),
  291. (3195201,'31952'),
  292. (3195400,'31954'),
  293. (3196200,'31962'),
  294. (3196300,'31963'),
  295. (3197300,'31973'),
  296. (3198000,'31980'),
  297. (3210500,'32105'),
  298. (3210600,'32106'),
  299. (3216400,'32164'),
  300. (3216401,'32164'),
  301. (3216500,'32165'),
  302. (3216501,'32165'),
  303. (3216600,'32166'),
  304. (3216700,'32167'),
  305. (3216800,'32168'),
  306. (3216900,'32169'),
  307. (382,'31380'),
  308. (383,'31373'),
  309. -- Mercenary Managers
  310. (351021,'35102'),
  311. (351441,'35144'),
  312. (351861,'35186'),
  313. (352281,'35228'),
  314. (352761,'35276'),
  315. (353181,'35318'),
  316. (353651,'35365'),
  317. -- Fishermens
  318. (3156200,'31562'),
  319. (3156300,'31563'),
  320. (3156400,'31564'),
  321. (3156500,'31565'),
  322. (3156600,'31566'),
  323. (3156700,'31567'),
  324. (3156800,'31568'),
  325. (3156900,'31569'),
  326. (3157000,'31570'),
  327. (3157100,'31571'),
  328. (3157200,'31572'),
  329. (3157300,'31573'),
  330. (3157400,'31574'),
  331. (3157500,'31575'),
  332. (3157600,'31576'),
  333. (3157700,'31577'),
  334. (3157800,'31578'),
  335. (3157900,'31579'),
  336. (3169600,'31696'),
  337. (3169700,'31697'),
  338. (3198900,'31989'),
  339. (3234800,'32348'),
  340. -- Old GM Shops (some still used temp)
  341. (9001,'gm'),
  342. (9002,'gm'),
  343. (9003,'gm'),
  344. (9004,'gm'),
  345. (9005,'gm'),
  346. (9006,'gm'),
  347. (9007,'gm'),
  348. (9008,'gm'),
  349. (9009,'gm'),
  350. (9010,'gm'),
  351. (9011,'gm'),
  352. (9012,'gm'),
  353. (9013,'gm'),
  354. (9014,'gm'),
  355. (9015,'gm'),
  356. (9016,'gm'),
  357. (9017,'gm'),
  358. (9018,'gm'),
  359. (9019,'gm'),
  360. (9020,'gm'),
  361. (9021,'gm'),
  362. (9022,'gm'),
  363. (9023,'gm'),
  364. (9024,'gm'),
  365. (9025,'gm'),
  366. (9026,'gm'),
  367. (9027,'gm'),
  368. (9028,'gm'),
  369. (9029,'gm'),
  370. (9030,'gm'),
  371. (9031,'gm'),
  372. (9032,'gm'),
  373. (9033,'gm'),
  374. (9034,'gm'),
  375. (9035,'gm'),
  376. (9036,'gm'),
  377. (9037,'gm'),
  378. (9038,'gm'),
  379. (9039,'gm'),
  380. (9040,'gm'),
  381. (9041,'gm'),
  382. (9042,'gm'),
  383. (9043,'gm'),
  384. (9044,'gm'),
  385. (9045,'gm'),
  386. (9046,'gm'),
  387. (9047,'gm'),
  388. (9048,'gm'),
  389. (9049,'gm'),
  390. (9050,'gm'),
  391. (9051,'gm'),
  392. (9052,'gm'),
  393. (9053,'gm'),
  394. (71022,'gm'),
  395. (71028,'gm'),
  396. (71029,'gm'),
  397. (30040,'gm'),
  398. (30041,'gm'),
  399. (30042,'gm'),
  400. (30043,'gm'),
  401. (30044,'gm'),
  402. (30045,'gm'),
  403. (30046,'gm'),
  404. (30047,'gm'),
  405. (30048,'gm'),
  406. (30049,'gm'),
  407. (30050,'gm'),
  408. (30051,'gm'),
  409. (30052,'gm'),
  410. (30053,'gm'),
  411. (30054,'gm'),
  412. (30055,'gm'),
  413. (30056,'gm'),
  414. (30057,'gm'),
  415. (30058,'gm'),
  416. (30059,'gm'),
  417. (300530,'gm'),
  418. (300536,'gm'),
  419. (300539,'gm'),
  420. (300540,'gm'),
  421. (300541,'gm'),
  422. (300542,'gm'),
  423. (300410,'gm'),
  424. (300510,'gm'),
  425. (9157,'gm'),
  426. -- Castle
  427. (335103, '35103'),
  428. (335145, '35145'),
  429. (335187, '35187'),
  430. (335229, '35229'),
  431. (335230, '35230'),
  432. (335231, '35231'),
  433. (335277, '35277'),
  434. (335319, '35319'),
  435. (335366, '35366'),
  436. (335512, '35512'),
  437. (335558, '35558'),
  438. (335644, '35644'),
  439. (335645, '35645'),
  440. (336456, '36456'),
  441. -- Castles Item creation
  442. (351001,'35100'),
  443. (351421,'35142'),
  444. (351841,'35184'),
  445. (352261,'35226'),
  446. (352741,'35274'),
  447. (353161,'35316'),
  448. (353631,'35363'),
  449. (355091,'35509'),
  450. (355551,'35555'),
  451. -- Clan Halls Item creation
  452. (135445, '35445'),
  453. (235445, '35445'),
  454. (335445, '35445'),
  455. (135453, '35453'),
  456. (235453, '35453'),
  457. (335453, '35453'),
  458. (135455, '35455'),
  459. (235455, '35455'),
  460. (335455, '35455'),
  461. (135451, '35451'),
  462. (235451, '35451'),
  463. (335451, '35451'),
  464. (135457, '35457'),
  465. (235457, '35457'),
  466. (335457, '35457'),
  467. (135459, '35459'),
  468. (235459, '35459'),
  469. (335459, '35459'),
  470. (135383, '35383'),
  471. (235383, '35383'),
  472. (335383, '35383'),
  473. (135398, '35398'),
  474. (235398, '35398'),
  475. (335398, '35398'),
  476. (135400, '35400'),
  477. (235400, '35400'),
  478. (335400, '35400'),
  479. (135392, '35392'),
  480. (235392, '35392'),
  481. (335392, '35392'),
  482. (135394, '35394'),
  483. (235394, '35394'),
  484. (335394, '35394'),
  485. (135396, '35396'),
  486. (235396, '35396'),
  487. (335396, '35396'),
  488. (135384, '35384'),
  489. (235384, '35384'),
  490. (335384, '35384'),
  491. (135390, '35390'),
  492. (235390, '35390'),
  493. (335390, '35390'),
  494. (135386, '35386'),
  495. (235386, '35386'),
  496. (335386, '35386'),
  497. (135388, '35388'),
  498. (235388, '35388'),
  499. (335388, '35388'),
  500. (135407, '35407'),
  501. (235407, '35407'),
  502. (335407, '35407'),
  503. (135403, '35403'),
  504. (235403, '35403'),
  505. (335403, '35403'),
  506. (135405, '35405'),
  507. (235405, '35405'),
  508. (335405, '35405'),
  509. (135421, '35421'),
  510. (235421, '35421'),
  511. (335421, '35421'),
  512. (135439, '35439'),
  513. (235439, '35439'),
  514. (335439, '35439'),
  515. (135441, '35441'),
  516. (235441, '35441'),
  517. (335441, '35441'),
  518. (135443, '35443'),
  519. (235443, '35443'),
  520. (335443, '35443'),
  521. (135447, '35447'),
  522. (235447, '35447'),
  523. (335447, '35447'),
  524. (135449, '35449'),
  525. (235449, '35449'),
  526. (335449, '35449'),
  527. (135467, '35467'),
  528. (235467, '35467'),
  529. (335467, '35467'),
  530. (135465, '35465'),
  531. (235465, '35465'),
  532. (335465, '35465'),
  533. (135463, '35463'),
  534. (235463, '35463'),
  535. (335463, '35463'),
  536. (135461, '35461'),
  537. (235461, '35461'),
  538. (335461, '35461'),
  539. (335566, '35566'),
  540. (235566, '35566'),
  541. (135566, '35566'),
  542. (335568, '35568'),
  543. (235568, '35568'),
  544. (135568, '35568'),
  545. (335570, '35570'),
  546. (235570, '35570'),
  547. (135570, '35570'),
  548. (335572, '35572'),
  549. (235572, '35572'),
  550. (135572, '35572'),
  551. (335574, '35574'),
  552. (235574, '35574'),
  553. (135574, '35574'),
  554. (335576, '35576'),
  555. (235576, '35576'),
  556. (135576, '35576'),
  557. (335578, '35578'),
  558. (235578, '35578'),
  559. (135578, '35578'),
  560. (235580, '35580'),
  561. (135580, '35580'),
  562. (335580, '35580'),
  563. (335582, '35582'),
  564. (235582, '35582'),
  565. (135582, '35582'),
  566. (135584, '35584'),
  567. (235584, '35584'),
  568. (335584, '35584'),
  569. (335586, '35586'),
  570. (135586, '35586'),
  571. (235586, '35586'),
  572. (355111, '35511'),
  573. (355571, '35557');
  574. -- GM SHOP IDs START (99xx range)--
  575. INSERT INTO `merchant_shopids` VALUES
  576. ('9901', 'gm'), -- Forgotten Scrolls
  577. ('9902', 'gm'), -- Life Stones
  578. ('9903', 'gm'), -- Elemental
  579. ('9904', 'gm'), -- Codex Books
  580. ('9905', 'gm'), -- Divine Inspiration Books
  581. ('9906', 'gm'), -- Transform Sealbooks
  582. ('9907', 'gm'), -- S84 Grade Weapons
  583. ('9908', 'gm'), -- S84 Jewels
  584. ('9909', 'gm'), -- Cloaks
  585. ('9910', 'gm'), -- Belts
  586. ('9911', 'gm'), -- Magic Pins
  587. ('9912', 'gm'), -- Magic Pouches
  588. ('9913', 'gm'), -- Shirts
  589. ('9914', 'gm'), -- Bracelets
  590. ('9915', 'gm'), -- Talisman
  591. ('9916', 'gm'), -- Currency
  592. ('9917', 'gm'), -- Boss Jewels
  593. ('9918', 'gm'), -- Pets
  594. ('9919', 'gm'), -- Castle Circlets
  595. ('9920', 'gm'), -- Hair Accessory
  596. ('9921', 'gm'), -- Fly Transform Books
  597. ('9922', 'gm'), -- Fishing Potions
  598. ('9923', 'gm'), -- Dynasty Weapons
  599. ('9924', 'gm'), -- Icarus Weapons
  600. ('9925', 'gm'), -- Monster Weapons
  601. ('9926', 'gm'), -- Sigils
  602. ('9927', 'gm'), -- SA Crystals
  603. ('9928', 'gm'), -- Potions
  604. ('9929', 'gm'), -- Elixirs
  605. ('9930', 'gm'), -- Scrolls
  606. ('9931', 'gm'), -- Enchant Scrolls
  607. ('9932', 'gm'), -- Pet Gear
  608. ('9933', 'gm'), -- S80 Dynasty Recipes
  609. ('9934', 'gm'), -- S80 Dynasty Parts
  610. ('9935', 'gm'), -- S80 Icarus Recipes
  611. ('9936', 'gm'), -- S80 Icarus Parts
  612. ('9937', 'gm'), -- Craft Materials
  613. ('9938', 'gm'), -- Shots
  614. ('9939', 'gm'), -- Crystals/Gemstones
  615. ('9940', 'gm'), -- S grade Parts
  616. ('9941', 'gm'), -- S grade Recipes
  617. ('9942', 'gm'), -- A Grade Recipes
  618. ('9943', 'gm'), -- A Grade Parts
  619. ('9944', 'gm'), -- Other Circlets
  620. ('9945', 'gm'), -- Buff Scrolls (event)
  621. ('9946', 'gm'), -- B Grade Recipes
  622. ('9947', 'gm'), -- B Grade Parts
  623. ('9948', 'gm'), -- Dyes
  624. ('9949', 'gm'), -- Fishing Rods
  625. ('9950', 'gm'), -- Fishing Gear
  626. ('9951', 'gm'), -- NG set
  627. ('9952', 'gm'), -- D set
  628. ('9953', 'gm'), -- C set
  629. ('9954', 'gm'), -- B set
  630. ('9955', 'gm'), -- A set
  631. ('9956', 'gm'), -- S set
  632. ('9957', 'gm'), -- S80 set
  633. ('9958', 'gm'), -- S84 set
  634. ('9959', 'gm'), -- Apella set
  635. ('9960', 'gm'), -- NG Jewel
  636. ('9961', 'gm'), -- D Jewel
  637. ('9962', 'gm'), -- C Jewel
  638. ('9963', 'gm'), -- B Jewel
  639. ('9964', 'gm'), -- A Jewel
  640. ('9965', 'gm'), -- S Jewel
  641. ('9966', 'gm'), -- S80 Jewel
  642. ('9967', 'gm'), -- Fishes
  643. ('9968', 'gm'), -- Designs (Gracia Items)
  644. ('9969', 'gm'), -- Materials for Designs (Gracia Items)
  645. ('9970', 'gm'), -- Mercenary Transformation Scrolls
  646. ('9971', 'gm'), -- Disguise Scroll
  647. ('9972', 'gm'), -- Santa Weapons
  648. ('9973', 'gm'), -- Baguette Weapons
  649. ('9974', 'gm'), -- Limited Time Weapons - 60 minutes
  650. ('9975', 'gm'), -- Limited Time Weapons - 4 hours
  651. ('9976', 'gm'), -- Transformation Sticks
  652. ('9977', 'gm'), -- Misc Event Items
  653. ('9978', 'gm'), -- Misc Consumables
  654. ('9979', 'gm'), -- Arrows
  655. ('9980', 'gm'), -- Infinity Weapons
  656. ('9981', 'gm'), -- S84 Grade PVP Weapons
  657. ('9982', 'gm'), -- Dynasty PVP Weapons
  658. ('9983', 'gm'), -- Icarus PVP Weapons
  659. ('9984', 'gm'), -- S PVP Weapons
  660. ('9985', 'gm'), -- A PVP Weapons
  661. ('9986', 'gm'), -- Hair Accessory Part 2
  662. ('9987', 'gm'), -- Territory Jewels
  663. ('9988', 'gm'), -- Territory Items
  664. ('9989', 'gm'), -- Fortress Misc
  665. ('9990', 'gm'), -- Territory Weapons
  666. ('9991', 'gm'), -- Territory Wards
  667. ('9992', 'gm'), -- Territory Flags
  668. ('9993', 'gm'), -- Seeds
  669. ('9994', 'gm'), -- Castle Guards
  670. ('9995', 'gm'), -- Magic Clip
  671. ('9996', 'gm'), -- Magic Ornament
  672. ('9997', 'gm'), -- A Weapons
  673. ('9998', 'gm'), -- S Weapons
  674. ('9999', 'gm'), -- Masterwork Jewels
  675. ('10000', 'gm'), -- Masterwork Armor B
  676. ('10001', 'gm'), -- Masterwork Armor A
  677. ('10002', 'gm'), -- Masterwork Armor S
  678. ('10003', 'gm'), -- Masterwork Armor S80
  679. ('10004', 'gm'), -- Agathions
  680. ('10005', 'gm'), -- Mounts
  681. ('10006', 'gm'); -- Event Masks
  682. -- Test Server Helpers Shops
  683. INSERT INTO `merchant_shopids` VALUES
  684. -- Mr Cat
  685. (3175601,'31756'), -- Soulshot, shared item or other supplies.
  686. (3175602,'31756'), -- No-grade recipe.
  687. (3175603,'31756'), -- D-grade recipe.
  688. (3175604,'31756'), -- C-grade recipe.
  689. (3175605,'31756'), -- B-grade recipe.
  690. (3175606,'31756'), -- A-grade recipe.
  691. (3175607,'31756'), -- S-grade recipe.
  692. (3175608,'31756'), -- Ordinary manufacturing recipe.
  693. -- Miss Queen
  694. (3175701,'31757'), -- Essential item - Grade D or lower
  695. (3175702,'31757'), -- Essential item - Grade C
  696. (3175703,'31757'), -- Essential item - Grade B
  697. (3175704,'31757'), -- Essential item - Grade A
  698. (3175705,'31757'), -- Essential item - Grade S and General Production Material Item
  699. (3175706,'31757'), -- Speelbook (1)
  700. (3175707,'31757'), -- Speelbook (2)
  701. (3175708,'31757'); -- Speelbook (3)