summaryrefslogtreecommitdiff
path: root/npc/re/merchants/shops.txt
blob: 543d9cdc71406fdc308ac1b6482e327634fd16b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
//================= Hercules Script =======================================
//=       _   _                     _
//=      | | | |                   | |
//=      | |_| | ___ _ __ ___ _   _| | ___  ___
//=      |  _  |/ _ \ '__/ __| | | | |/ _ \/ __|
//=      | | | |  __/ | | (__| |_| | |  __/\__ \
//=      \_| |_/\___|_|  \___|\__,_|_|\___||___/
//================= License ===============================================
//= This file is part of Hercules.
//= http://herc.ws - http://github.com/HerculesWS/Hercules
//=
//= Copyright (C) 2012-2016  Hercules Dev Team
//= Copyright (C)  Frost
//= Copyright (C)  rAthena Dev Team
//= Copyright (C)  Lemongrass
//= Copyright (C)  Streusel
//= Copyright (C)  Euphy
//= Copyright (C)  Joseph
//= Copyright (C)  eAthena Dev Team
//= Copyright (C)  Kenpachi
//=
//= Hercules is free software: you can redistribute it and/or modify
//= it under the terms of the GNU General Public License as published by
//= the Free Software Foundation, either version 3 of the License, or
//= (at your option) any later version.
//=
//= This program is distributed in the hope that it will be useful,
//= but WITHOUT ANY WARRANTY; without even the implied warranty of
//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//= GNU General Public License for more details.
//=
//= You should have received a copy of the GNU General Public License
//= along with this program.  If not, see <http://www.gnu.org/licenses/>.
//=========================================================================
//= Shops (Renewal)
//================= Description ===========================================
//= Renewal-specific town shop NPCs.
//================= Current Version =======================================
//= 2.4
//=========================================================================

//== Comodo ================================================
comodo,106,213,5	trader	Tropic Fruit Dealer	4_F_07,{
OnInit:
	sellitem Comodo_Tropic_Fruit;
}

comodo,196,162,3	trader	Harive#candy	4_M_MINSTREL,{
OnInit:
	sellitem Protect_Neck_Candy;
	sellitem Heartbroken_Tears;
}

//== Dewata ================================================
dewata,218,164,4	trader	Weapon Dealer	4_M_DEWMAN,{
OnInit:
	sellitem Main_Gauche;
	sellitem Stiletto;
	sellitem Blade;
	sellitem Ring_Pommel_Saber;
	sellitem Katana;
	sellitem Bastard_Sword;
	sellitem Pike;
	sellitem Partizan;
	sellitem Hammer;
	sellitem Chain;
}

dewata,182,164,6	trader	Tool Dealer	4_M_DEWMAN,{
OnInit:
	sellitem Spectacles;
	sellitem Arrow;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
	sellitem One_Eyed_Glass;
	sellitem Empty_Bottle;
}

dewata,145,267,6	trader	Fruit Gardener	4_M_DEWOLDWOMAN,{
OnInit:
	sellitem Apple;
	sellitem Banana;
	sellitem Carrot;
	sellitem Sweet_Potato;
	sellitem Pumpkin;
}

dewata,158,182,6	trader	Armor Dealer	4_M_DEWMAN,{
OnInit:
	sellitem Bandana;
	sellitem Sandals;
	sellitem Shoes;
	sellitem Hood;
	sellitem Muffler;
	sellitem Guard;
	sellitem Buckler;
	sellitem Adventure_Suit;
	sellitem Silk_Robe;
	sellitem Silver_Robe;
	sellitem Wooden_Mail;
	sellitem Belt;
}

//== Einbroch ==============================================
einbroch,122,250,4	trader	Black Marketeer#ein	1_M_03,{
OnInit:
	sellitem Flame_Thrower;
	sellitem Accelerator;
	sellitem Hovering_Booster;
	sellitem Suicidal_Device;
	sellitem Shape_Shifter;
	sellitem Cooling_Device;
	sellitem Mag_Field_Generator;
	sellitem Barrier_Builder;
	sellitem Repair_Kit;
	sellitem Cannon_Ball;
	sellitem Holy_Cannon_Ball;
	sellitem Dark_Cannon_Ball;
	sellitem Soul_Cannon_Ball;
	sellitem Iron_Cannon_Ball;
	sellitem Vulcan_Bullet;
	sellitem Magic_Gear_Fuel;
	sellitem Liquid_Condensed_Bullet;
	sellitem Monkey_Wrench;
	sellitem Camouflage_Generator;
	sellitem RepairA;
	sellitem RepairB;
	sellitem RepairC;
}

//== El Dicastes ===========================================
dic_in01,238,107,5	trader	Peddler#dic	4_M_HUMERCHANT,{
OnInit:
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Spectacles;
	sellitem Leaf_Of_Yggdrasil;
}

dicastes01,207,200,6	trader	Points Merchant#dic	1_F_01,{
OnInit:
	sellitem Scarlet_Pts;
	sellitem Indigo_Pts;
	sellitem Yellow_Wish_Pts;
	sellitem Lime_Green_Pts;
}

//== Izlude ================================================
izlude,124,165,4	trader	Fruit Gardener#iz	1_M_INNKEEPER,{
OnInit:
	sellitem Apple;
	sellitem Banana;
	sellitem Carrot;
	sellitem Sweet_Potato;
}

izlude_a,124,165,4	duplicate(Fruit Gardener#iz)	Fruit Gardener#iz_a	1_M_INNKEEPER
izlude_b,124,165,4	duplicate(Fruit Gardener#iz)	Fruit Gardener#iz_b	1_M_INNKEEPER
izlude_c,124,165,4	duplicate(Fruit Gardener#iz)	Fruit Gardener#iz_c	1_M_INNKEEPER
izlude_d,124,165,4	duplicate(Fruit Gardener#iz)	Fruit Gardener#iz_d	1_M_INNKEEPER

izlude,160,186,0	trader	Butcher#iz	1_M_JOBGUIDER,{
OnInit:
	sellitem Meat;
}

izlude_a,160,186,0	duplicate(Butcher#iz)	Butcher#iz_a	1_M_JOBGUIDER
izlude_b,160,186,0	duplicate(Butcher#iz)	Butcher#iz_b	1_M_JOBGUIDER
izlude_c,160,186,0	duplicate(Butcher#iz)	Butcher#iz_c	1_M_JOBGUIDER
izlude_d,160,186,0	duplicate(Butcher#iz)	Butcher#iz_d	1_M_JOBGUIDER

izlude,128,158,7	trader	Vendor from Milk Ranch#i	4_F_01,{
OnInit:
	sellitem Milk;
}

izlude_a,128,158,7	duplicate(Vendor from Milk Ranch#i)	Vendor from Milk Ranch#a	4_F_01
izlude_b,128,158,7	duplicate(Vendor from Milk Ranch#i)	Vendor from Milk Ranch#b	4_F_01
izlude_c,128,158,7	duplicate(Vendor from Milk Ranch#i)	Vendor from Milk Ranch#c	4_F_01
izlude_d,128,158,7	duplicate(Vendor from Milk Ranch#i)	Vendor from Milk Ranch#d	4_F_01

izlude_in,72,98,3	trader	Pet Groomer#iz	4_F_TELEPORTER,{
OnInit:
	sellitem Pet_Food;
	sellitem Pet_Incubator;
	sellitem Backpack;
	sellitem Rocker_Glasses;
	sellitem Vital_Flower_;
	sellitem Flame_Gemstone;
	sellitem Bun_;
	sellitem Vital_Flower;
	sellitem Damp_Darkness;
	sellitem Small_Snow_Flower;
	sellitem Fresh_Plant;
	sellitem Big_Cell;
	sellitem Apple_Pudding;
	sellitem Mystic_Stone;
	sellitem Flavored_Alcohol;
	sellitem Spirit_Liquor;
	sellitem Pumpkin_Pie_;
	sellitem Sunset_On_The_Rock;
	sellitem Morning_Dew;
	sellitem Grilled_Rice_Cake;
}

izlude_in,57,110,0	trader	Tool Dealer#iz	1_M_01,{
OnInit:
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
	sellitem Arrow;
}

izlude_in,72,110,3	trader	Trading Merchant#iz	4_M_HUMERCHANT,{
OnInit:
	sellitem Bullet;
	sellitem Silver_Bullet;
	sellitem Shell_Of_Blood;
	sellitem Branch;
	sellitem Crimson_Bolt;
	sellitem The_Cyclone;
	sellitem Rolling_Stone;
	sellitem Black_Rose;
	sellitem Long_Barrel;
	sellitem Jungle_Carbine;
	sellitem Thunder_P;
}

//== Juno ==================================================
s_atelier,114,117,1	trader	Part-Timer#sc_yuno	4_F_03,{
OnInit:
	sellitem Surface_Paint;
	sellitem Face_Paint;
}

//== Lighthalzen ===========================================
lighthalzen,337,240,4	trader	Trap Specialist#lhz	1_F_01,{
OnInit:
	sellitem Special_Alloy_Trap;
	sellitem Special_Alloy_Trap_Box;
}

lhz_in03,181,17,4	trader	Black Marketeer#lhz	1_M_03,{
OnInit:
	sellitem Flame_Thrower;
	sellitem Accelerator;
	sellitem Hovering_Booster;
	sellitem Suicidal_Device;
	sellitem Shape_Shifter;
	sellitem Cooling_Device;
	sellitem Mag_Field_Generator;
	sellitem Barrier_Builder;
	sellitem Repair_Kit;
	sellitem Cannon_Ball;
	sellitem Holy_Cannon_Ball;
	sellitem Dark_Cannon_Ball;
	sellitem Soul_Cannon_Ball;
	sellitem Iron_Cannon_Ball;
	sellitem Vulcan_Bullet;
	sellitem Magic_Gear_Fuel;
	sellitem Liquid_Condensed_Bullet;
	sellitem Monkey_Wrench;
	sellitem Camouflage_Generator;
	sellitem RepairA;
	sellitem RepairB;
	sellitem RepairC;
}

s_atelier,15,65,5	trader	Part-Timer#sc_lgt	4_M_ORIENT02,{
OnInit:
	sellitem Surface_Paint;
	sellitem Face_Paint;
}

//== Malangdo ==============================================
malangdo,232,163,5	trader	Tool Dealer Myo	4_CAT_ADV2,{
OnInit:
	sellitem Spectacles;
	sellitem Arrow;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
	sellitem Empty_Bottle;
}

//== Mora ==================================================
mora,100,118,4	trader	Tool Dealer#mora	4_M_RAFLE_OLD,{
OnInit:
	sellitem Red_Raffle_Sap;
	sellitem Yellow_Raffle_Sap;
	sellitem White_Raffle_Sap;
	sellitem Wing_Of_Butterfly;
	sellitem Wing_Of_Fly;
	sellitem Spectacles;
	sellitem Arrow_Of_Elf;
	sellitem Hunting_Arrow;
}

mora,138,110,4	trader	Mora Chef	4_F_RAFLE_PK,{
OnInit:
	sellitem Beef_Toast;
}

//== Mid Camp ==============================================
mid_camp,129,284,4	trader	Trap Specialist#mid	1_F_01,{
OnInit:
	sellitem Special_Alloy_Trap;
	sellitem Special_Alloy_Trap_Box;
}

mid_camp,184,263,4	trader	Black Marketeer#mid	1_M_03,{
OnInit:
	sellitem Flame_Thrower;
	sellitem Accelerator;
	sellitem Hovering_Booster;
	sellitem Suicidal_Device;
	sellitem Shape_Shifter;
	sellitem Cooling_Device;
	sellitem Mag_Field_Generator;
	sellitem Barrier_Builder;
	sellitem Repair_Kit;
	sellitem Cannon_Ball;
	sellitem Holy_Cannon_Ball;
	sellitem Dark_Cannon_Ball;
	sellitem Soul_Cannon_Ball;
	sellitem Iron_Cannon_Ball;
	sellitem Vulcan_Bullet;
	sellitem Magic_Gear_Fuel;
	sellitem Liquid_Condensed_Bullet;
	sellitem Monkey_Wrench;
	sellitem Camouflage_Generator;
	sellitem RepairA;
	sellitem RepairB;
	sellitem RepairC;
}

//== Payon =================================================
payon,123,109,4	trader	Trap Specialist#pay	1_F_01,{
OnInit:
	sellitem Special_Alloy_Trap;
	sellitem Special_Alloy_Trap_Box;
}

//== Port Malaya ===========================================
ma_in01,73,22,3	trader	Weapon Dealer#ma	4_M_DEWMAN,{
OnInit:
	sellitem Main_Gauche;
	sellitem Stiletto;
	sellitem Blade;
	sellitem Ring_Pommel_Saber;
	sellitem Katana;
	sellitem Bastard_Sword;
	sellitem Pike;
	sellitem Partizan;
	sellitem Hammer;
	sellitem Chain;
}

ma_in01,22,23,3	trader	Tool Dealer#ma	4_M_DEWMAN,{
OnInit:
	sellitem Spectacles;
	sellitem Arrow;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
	sellitem One_Eyed_Glass;
}

malaya,150,261,3	trader	Fruit Gardener#ma	4_M_DEWOLDWOMAN,{
OnInit:
	sellitem Apple;
	sellitem Banana;
	sellitem Carrot;
	sellitem Sweet_Potato;
	sellitem Pumpkin;
}

ma_in01,67,13,5	trader	Armor Dealer#ma	4_M_DEWMAN,{
OnInit:
	sellitem Bandana;
	sellitem Sandals;
	sellitem Shoes;
	sellitem Hood;
	sellitem Muffler;
	sellitem Guard;
	sellitem Buckler;
	sellitem Adventure_Suit;
	sellitem Silk_Robe;
	sellitem Silver_Robe;
	sellitem Wooden_Mail;
	sellitem Belt;
}

//== Prontera ==============================================
/*
prontera,104,88,5	trader	Stuff Gimme	4_M_MASKMAN,{
OnInit:
	sellitem Old_Card_Album;
}
*/

prt_in,126,76,0	trader	Tool Dealer#prt1	1_M_INNKEEPER,{
OnInit:
	sellitem Spectacles;
	sellitem Arrow;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
}

prt_in,117,79,5	trader	Toy Supplier#prt	4_M_PIERROT,{
OnInit:
	sellitem One_Eyed_Glass;
	sellitem Sunglasses;
	sellitem Spinning_Eyes;
	sellitem Eye_Bandage;
	sellitem Luxury_Sunglasses;
	sellitem Granpa_Beard;
}

prt_fild05,290,221,2	trader	Tool Dealer#prt	4_M_01,{
OnInit:
	sellitem Arrow;
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Center_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
}

prt_in,109,68,4	trader	Trap Specialist#prt	1_F_01,{
OnInit:
	sellitem Special_Alloy_Trap;
	sellitem Special_Alloy_Trap_Box;
}

prt_in,175,137,4	trader	Black Marketeer#prt	1_M_03,{
OnInit:
	sellitem Flame_Thrower;
	sellitem Accelerator;
	sellitem Hovering_Booster;
	sellitem Suicidal_Device;
	sellitem Shape_Shifter;
	sellitem Cooling_Device;
	sellitem Mag_Field_Generator;
	sellitem Barrier_Builder;
	sellitem Repair_Kit;
	sellitem Cannon_Ball;
	sellitem Holy_Cannon_Ball;
	sellitem Dark_Cannon_Ball;
	sellitem Soul_Cannon_Ball;
	sellitem Iron_Cannon_Ball;
	sellitem Vulcan_Bullet;
	sellitem Magic_Gear_Fuel;
	sellitem Liquid_Condensed_Bullet;
	sellitem Monkey_Wrench;
	sellitem Camouflage_Generator;
	sellitem RepairA;
	sellitem RepairB;
	sellitem RepairC;
}

s_atelier,17,110,1	trader	Part-Timer#sc_prt	1_F_02,{
OnInit:
	sellitem Surface_Paint;
	sellitem Face_Paint;
}

//- Ninja Shops -
prontera,178,244,3	trader	Amatsu Trader#nin	4_M_01,{
OnInit:
	sellitem Shuriken;
	sellitem Nimbus_Shuriken;
	sellitem Flash_Shuriken;
	sellitem Sharp_Leaf_Shuriken;
	sellitem Thorn_Needle_Shuriken;
	sellitem Explosive_Kunai;
	sellitem Makibishi;
	sellitem Arm_Guard;
	sellitem Fox_Armguard;
	sellitem Special_Ninja_Suit;
	sellitem Flame_Stone;
	sellitem Ice_Stone;
	sellitem Wind_Stone;
	sellitem Shadow_Orb;
	sellitem Charm_Fire;
	sellitem Charm_Ice;
	sellitem Charm_Wind;
	sellitem Charm_Earth;
}

prontera,218,211,4	trader	Pet Groomer#prt	4_M_TELEPORTER,{
OnInit:
	sellitem Pet_Food;
	sellitem Pet_Incubator;
	sellitem Backpack;
	sellitem Rocker_Glasses;
	sellitem Vital_Flower_;
	sellitem Flame_Gemstone;
	sellitem Bun_;
	sellitem Vital_Flower;
	sellitem Damp_Darkness;
	sellitem Small_Snow_Flower;
	sellitem Fresh_Plant;
	sellitem Big_Cell;
	sellitem Apple_Pudding;
	sellitem Mystic_Stone;
	sellitem Flavored_Alcohol;
	sellitem Spirit_Liquor;
	sellitem Pumpkin_Pie_;
	sellitem Sunset_On_The_Rock;
	sellitem Morning_Dew;
	sellitem Grilled_Rice_Cake;
}

prontera,92,209,4	trader	Rebellion Weapon Vending	2_VENDING_MACHINE1,{
OnInit:
	sellitem H_FEATHER_H_FIRE;
	sellitem ALTAIR_ARES;
	sellitem COLORSCOPE;
	sellitem RAG203;
	sellitem DEATHFIRE;
	sellitem R_THUNDER;
	sellitem P_BREAKER;
	sellitem MINIMAY;
	sellitem TEMPEST;
	sellitem END_OF_HORIZON;
	sellitem Southern_Cross_R;
}

prontera,96,209,4	trader	Rebellion Prop Vending	2_VENDING_MACHINE1,{
OnInit:
	sellitem Slug_Bullet_1;
	sellitem Slug_Bullet_2;
	sellitem Slug_Bullet_3;
	sellitem Fullmetal_Jacket_Bullet;
	sellitem Mine_Projectile;
	sellitem Dragon_Tail_Missile;
	sellitem Special_Alloy_Trap;
	sellitem Bullet;
	sellitem Silver_Bullet_;
	sellitem Shell_Of_Blood_;
	sellitem AP_Ammo;
	sellitem Blaze_Bullet;
	sellitem Freezing_Bullet;
	sellitem Electric_Shock_Bullet;
	sellitem Magical_Stone_Bullet;
	sellitem Sanctified_Bullet;
	sellitem Flare_Sphere_;
	sellitem Lighting_Sphere_;
	sellitem Poison_Sphere_;
	sellitem Blind_Sphere_;
	sellitem Freezing_Sphere_;
}

//== Morroc ===============================================
morocc,156,76,4	trader	Butcher#moc1	1_M_MERCHANT,{
OnInit:
	sellitem Meat;
}

moc_ruins,91,128,4	trader	Tool Dealer#moc1	4_F_04,{
OnInit:
	sellitem Arrow;
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
}

moc_ruins,114,63,6	trader	Tool Dealer#moc2	4W_M_03,{
OnInit:
	sellitem Arrow;
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
}

morocc,147,103,6	trader	Tool Dealer#moc3	4W_M_03,{
OnInit:
	sellitem Arrow;
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
}

morocc,151,241,4	trader	Tool Dealer#moc4	4_F_04,{
OnInit:
	sellitem Arrow;
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
}

moc_ruins,118,170,4	trader	Pet Groomer#moc	4_M_TELEPORTER,{
OnInit:
	sellitem Pet_Food;
	sellitem Pet_Incubator;
	sellitem Backpack;
	sellitem Rocker_Glasses;
	sellitem Vital_Flower_;
	sellitem Flame_Gemstone;
	sellitem Bun_;
	sellitem Vital_Flower;
	sellitem Damp_Darkness;
	sellitem Small_Snow_Flower;
	sellitem Fresh_Plant;
	sellitem Big_Cell;
	sellitem Apple_Pudding;
	sellitem Mystic_Stone;
	sellitem Flavored_Alcohol;
	sellitem Spirit_Liquor;
	sellitem Pumpkin_Pie_;
	sellitem Sunset_On_The_Rock;
	sellitem Morning_Dew;
	sellitem Grilled_Rice_Cake;
}

morocc,203,87,4	trader	Pet Groomer#moc1	4_M_TELEPORTER,{
OnInit:
	sellitem Pet_Food;
	sellitem Pet_Incubator;
	sellitem Backpack;
	sellitem Rocker_Glasses;
	sellitem Vital_Flower_;
	sellitem Flame_Gemstone;
	sellitem Bun_;
	sellitem Vital_Flower;
	sellitem Damp_Darkness;
	sellitem Small_Snow_Flower;
	sellitem Fresh_Plant;
	sellitem Big_Cell;
	sellitem Apple_Pudding;
	sellitem Mystic_Stone;
	sellitem Flavored_Alcohol;
	sellitem Spirit_Liquor;
	sellitem Pumpkin_Pie_;
	sellitem Sunset_On_The_Rock;
	sellitem Morning_Dew;
	sellitem Grilled_Rice_Cake;
}

morocc,154,55,6	trader	Jeweler#moc3	4W_M_03,{
OnInit:
	sellitem Crystal_Jewel;
	sellitem Diamond_Ring;
}

morocc,171,103,4	trader	Item Collector#moc3	4_M_03,{
OnInit:
	sellitem Scell;
	sellitem Monsters_Feed;
	sellitem Animals_Skin;
	sellitem Bill_Of_Birds;
}

morocc,205,247,2	trader	Item Collector#moc4	4_M_03,{
OnInit:
	sellitem Scell;
	sellitem Monsters_Feed;
	sellitem Animals_Skin;
	sellitem Bill_Of_Birds;
}

morocc,140,90,6	trader	Trader#moc6	4W_M_03,{
OnInit:
	sellitem Banana;
}

morocc,166,54,2	trader	Jeweler#moc4	8_F,{
OnInit:
	sellitem Azure_Jewel;
	sellitem Cardinal_Jewel;
	sellitem Blue_Jewel;
	sellitem Golden_Jewel;
	sellitem Bluish_Green_Jewel;
}

morocc,34,68,0	trader	Trader#moc7	4_F_04,{
OnInit:
	sellitem Witherless_Rose;
}

morocc,269,193,4	trader	Trader#moc8	4_M_ORIENT02,{
OnInit:
	sellitem Skul_Ring;
	sellitem Sword_Mace;
	sellitem Stunner;
}

morocc,256,191,5	trader	Trader#moc9	4_F_04,{
OnInit:
	sellitem Flower_Ring;
}

//== Geffen ================================================
geffen_in,77,167,0	trader	Tool Dealer#gef	1_F_03,{
OnInit:
	sellitem Arrow;
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
}

geffen,193,152,4	trader	Pet Groomer#gef	4_F_TELEPORTER,{
OnInit:
	sellitem Pet_Food;
	sellitem Pet_Incubator;
	sellitem Backpack;
	sellitem Rocker_Glasses;
	sellitem Vital_Flower_;
	sellitem Flame_Gemstone;
	sellitem Bun_;
	sellitem Vital_Flower;
	sellitem Damp_Darkness;
	sellitem Small_Snow_Flower;
	sellitem Fresh_Plant;
	sellitem Big_Cell;
	sellitem Apple_Pudding;
	sellitem Mystic_Stone;
	sellitem Flavored_Alcohol;
	sellitem Spirit_Liquor;
	sellitem Pumpkin_Pie_;
	sellitem Sunset_On_The_Rock;
	sellitem Morning_Dew;
	sellitem Grilled_Rice_Cake;
}

geffen_in,171,123,4	trader	Tool Dealer#gef2	1_M_WIZARD,{
OnInit:
	sellitem Empty_Cylinder;
	sellitem Empty_Potion;
	sellitem Empty_Bottle;
}

//== Alberta ===============================================
alb2trea,87,65,5	trader	Tool Dealer#alb	4_M_01,{
OnInit:
	sellitem Arrow;
	sellitem Silver_Arrow;
	sellitem Fire_Arrow;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
}

alberta_in,182,97,0	trader	Tool Dealer#alb2	1_F_MERCHANT_01,{
OnInit:
	sellitem Arrow;
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
}

alberta_in,176,81,3	trader	Trading Merchant#alb	4_M_HUMERCHANT,{
OnInit:
	sellitem Bullet;
	sellitem Silver_Bullet_;
	sellitem Shell_Of_Blood_;
	sellitem Branch;
	sellitem Crimson_Bolt;
	sellitem The_Cyclone;
	sellitem Rolling_Stone;
	sellitem Black_Rose;
	sellitem Long_Barrel;
	sellitem Jungle_Carbine;
	sellitem Thunder_P;
}

//== Payon =================================================
payon,159,96,4	trader	Tool Dealer#pay3	4_M_ORIENT01,{
OnInit:
	sellitem Arrow;
	sellitem Red_Potion;
	sellitem Center_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
}

payon_in01,5,49,7	trader	Tool Dealer#pay	4_M_ORIENT01,{
OnInit:
	sellitem Arrow;
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
}

payon,177,131,4	trader	Pet Groomer#pay	4_F_TELEPORTER,{
OnInit:
	sellitem Pet_Food;
	sellitem Pet_Incubator;
	sellitem Backpack;
	sellitem Rocker_Glasses;
	sellitem Vital_Flower_;
	sellitem Flame_Gemstone;
	sellitem Bun_;
	sellitem Vital_Flower;
	sellitem Damp_Darkness;
	sellitem Small_Snow_Flower;
	sellitem Fresh_Plant;
	sellitem Big_Cell;
	sellitem Apple_Pudding;
	sellitem Mystic_Stone;
	sellitem Flavored_Alcohol;
	sellitem Spirit_Liquor;
	sellitem Pumpkin_Pie_;
	sellitem Sunset_On_The_Rock;
	sellitem Morning_Dew;
	sellitem Grilled_Rice_Cake;
}

payon_in02,87,34,0	trader	Tool Dealer#pay2	1_F_ORIENT_01,{
OnInit:
	sellitem Arrow;
	sellitem Silver_Arrow;
	sellitem Spectacles;
	sellitem Red_Potion;
	sellitem Orange_Potion;
	sellitem Yellow_Potion;
	sellitem White_Potion;
	sellitem Center_Potion;
	sellitem Awakening_Potion;
	sellitem Empty_Bottle;
	sellitem Wing_Of_Fly;
	sellitem Wing_Of_Butterfly;
	sellitem Booby_Trap;
}

//== Rachel ================================================
ra_in01,263,281,4	trader	Trap Specialist#ra	1_F_01,{
OnInit:
	sellitem Special_Alloy_Trap;
	sellitem Special_Alloy_Trap_Box;
}

ra_in01,257,266,4	trader	Black Marketeer#ra	1_M_03,{
OnInit:
	sellitem Flame_Thrower;
	sellitem Accelerator;
	sellitem Hovering_Booster;
	sellitem Suicidal_Device;
	sellitem Shape_Shifter;
	sellitem Cooling_Device;
	sellitem Mag_Field_Generator;
	sellitem Barrier_Builder;
	sellitem Repair_Kit;
	sellitem Cannon_Ball;
	sellitem Holy_Cannon_Ball;
	sellitem Dark_Cannon_Ball;
	sellitem Soul_Cannon_Ball;
	sellitem Iron_Cannon_Ball;
	sellitem Vulcan_Bullet;
	sellitem Magic_Gear_Fuel;
	sellitem Liquid_Condensed_Bullet;
	sellitem Monkey_Wrench;
	sellitem Camouflage_Generator;
	sellitem RepairA;
	sellitem RepairB;
	sellitem RepairC;
}

s_atelier,137,60,3	trader	Part-Timer#sc_ra	1_F_GYPSY,{
OnInit:
	sellitem Surface_Paint;
	sellitem Face_Paint;
}

//== Cooking Addition ======================================
prontera,156,212,1	trader	Chef Assistant#prt	8_F_GIRL,{
OnInit:
	sellitem Combination_Kit;
	sellitem Mushroom;
	sellitem Pot;
	sellitem Bread;
	sellitem Grain;
	sellitem Cooking_Oil;
	sellitem Plain_Sauce;
	sellitem Hot_Sauce;
	sellitem Sweet_Sauce;
	sellitem Red_Spice;
	sellitem Yellow_Spice;
	sellitem Delicious_Fish;
	sellitem Outdoor_Cooking_Kits;
	sellitem Indoor_Cooking_Kits;
	sellitem High_end_Cooking_Kits;
	sellitem Cookbook01;
	sellitem Cookbook02;
	sellitem Cookbook03;
	sellitem Cookbook04;
	sellitem Cookbook05;
}

moc_ruins,115,123,5	trader	Chef Assistant#moc	4_M_04,{
OnInit:
	sellitem Combination_Kit;
	sellitem Mushroom;
	sellitem Pot;
	sellitem Bread;
	sellitem Grain;
	sellitem Cooking_Oil;
	sellitem Plain_Sauce;
	sellitem Hot_Sauce;
	sellitem Sweet_Sauce;
	sellitem Red_Spice;
	sellitem Yellow_Spice;
	sellitem Delicious_Fish;
	sellitem Outdoor_Cooking_Kits;
	sellitem Indoor_Cooking_Kits;
	sellitem High_end_Cooking_Kits;
}

geffen,196,111,3	trader	Chef Assistant#gef	4_M_03,{
OnInit:
	sellitem Combination_Kit;
	sellitem Mushroom;
	sellitem Pot;
	sellitem Bread;
	sellitem Grain;
	sellitem Cooking_Oil;
	sellitem Plain_Sauce;
	sellitem Hot_Sauce;
	sellitem Sweet_Sauce;
	sellitem Red_Spice;
	sellitem Yellow_Spice;
	sellitem Delicious_Fish;
	sellitem Outdoor_Cooking_Kits;
	sellitem Indoor_Cooking_Kits;
	sellitem High_end_Cooking_Kits;
}

alberta,167,135,5	trader	Chef Assistant#alb	4_M_05,{
OnInit:
	sellitem Combination_Kit;
	sellitem Mushroom;
	sellitem Pot;
	sellitem Bread;
	sellitem Grain;
	sellitem Cooking_Oil;
	sellitem Plain_Sauce;
	sellitem Hot_Sauce;
	sellitem Sweet_Sauce;
	sellitem Red_Spice;
	sellitem Yellow_Spice;
	sellitem Delicious_Fish;
	sellitem Outdoor_Cooking_Kits;
	sellitem Indoor_Cooking_Kits;
	sellitem High_end_Cooking_Kits;
}

payon,206,119,5	trader	Chef Assistant#pay	4_M_ORIENT02,{
OnInit:
	sellitem Combination_Kit;
	sellitem Mushroom;
	sellitem Pot;
	sellitem Bread;
	sellitem Grain;
	sellitem Cooking_Oil;
	sellitem Plain_Sauce;
	sellitem Hot_Sauce;
	sellitem Sweet_Sauce;
	sellitem Red_Spice;
	sellitem Yellow_Spice;
	sellitem Delicious_Fish;
	sellitem Outdoor_Cooking_Kits;
	sellitem Indoor_Cooking_Kits;
	sellitem High_end_Cooking_Kits;
}