-
Notifications
You must be signed in to change notification settings - Fork 15
/
02_db_data_skill_icons.sql
6998 lines (6996 loc) · 442 KB
/
02_db_data_skill_icons.sql
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
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
/*!40000 ALTER TABLE `data_skill_icons` DISABLE KEYS */;
INSERT IGNORE INTO `data_skill_icons` (`skillId`, `class`, `race`, `gender`, `icon`) VALUES
(4999, 'common', 'common', 'common', 'voidtrap_tex'),
(10100, 'archer', 'common', 'common', 'arrowshot_tex'),
(10100, 'assassin', 'common', 'common', 'c12_meleecombo'),
(10100, 'berserker', 'common', 'common', 'comboattack_tex'),
(10100, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(10100, 'engineer', 'common', 'common', 'cannonshot_tex'),
(10100, 'fighter', 'common', 'common', 'comboattack01_tex'),
(10100, 'glaiver', 'common', 'common', 'combo_tex'),
(10100, 'lancer', 'common', 'common', 'comboattack_tex'),
(10100, 'priest', 'common', 'common', 'magicshot_tex'),
(10100, 'slayer', 'common', 'common', 'comboattack_tex'),
(10100, 'sorcerer', 'common', 'common', 'fireball_tex'),
(10100, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10100, 'warrior', 'common', 'common', 'comboattack_tex'),
(10101, 'fighter', 'common', 'common', 'comboattack02_tex'),
(10101, 'glaiver', 'common', 'common', 'combo_tex'),
(10101, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10102, 'fighter', 'common', 'common', 'comboattack03_tex'),
(10102, 'glaiver', 'common', 'common', 'combo_tex'),
(10102, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10103, 'fighter', 'common', 'common', 'comboattack04_tex'),
(10103, 'glaiver', 'common', 'common', 'combo_tex'),
(10103, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10104, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10105, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10130, 'glaiver', 'common', 'common', 'combo_tex'),
(10199, 'glaiver', 'common', 'common', 'combo_tex'),
(10200, 'archer', 'common', 'common', 'arrowshot_tex'),
(10200, 'assassin', 'common', 'common', 'c12_meleecombo'),
(10200, 'berserker', 'common', 'common', 'comboattack_tex'),
(10200, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(10200, 'engineer', 'common', 'common', 'cannonshot_tex'),
(10200, 'fighter', 'common', 'common', 'comboattack01_tex'),
(10200, 'glaiver', 'common', 'common', 'combo_tex'),
(10200, 'lancer', 'common', 'common', 'comboattack_tex'),
(10200, 'priest', 'common', 'common', 'magicshot_tex'),
(10200, 'slayer', 'common', 'common', 'comboattack_tex'),
(10200, 'sorcerer', 'common', 'common', 'fireball_tex'),
(10200, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10200, 'warrior', 'common', 'common', 'comboattack_tex'),
(10201, 'fighter', 'common', 'common', 'comboattack02_tex'),
(10201, 'glaiver', 'common', 'common', 'combo_tex'),
(10201, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10202, 'fighter', 'common', 'common', 'comboattack03_tex'),
(10202, 'glaiver', 'common', 'common', 'combo_tex'),
(10202, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10203, 'fighter', 'common', 'common', 'comboattack04_tex'),
(10203, 'glaiver', 'common', 'common', 'combo_tex'),
(10203, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10204, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10205, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10230, 'glaiver', 'common', 'common', 'combo_tex'),
(10299, 'glaiver', 'common', 'common', 'combo_tex'),
(10300, 'archer', 'common', 'common', 'arrowshot_tex'),
(10300, 'assassin', 'common', 'common', 'c12_meleecombo'),
(10300, 'berserker', 'common', 'common', 'comboattack_tex'),
(10300, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(10300, 'engineer', 'common', 'common', 'cannonshot_tex'),
(10300, 'fighter', 'common', 'common', 'comboattack01_tex'),
(10300, 'glaiver', 'common', 'common', 'combo_tex'),
(10300, 'lancer', 'common', 'common', 'comboattack_tex'),
(10300, 'priest', 'common', 'common', 'magicshot_tex'),
(10300, 'slayer', 'common', 'common', 'comboattack_tex'),
(10300, 'sorcerer', 'common', 'common', 'fireball_tex'),
(10300, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10300, 'warrior', 'common', 'common', 'comboattack_tex'),
(10301, 'fighter', 'common', 'common', 'comboattack02_tex'),
(10301, 'glaiver', 'common', 'common', 'combo_tex'),
(10301, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10302, 'fighter', 'common', 'common', 'comboattack03_tex'),
(10302, 'glaiver', 'common', 'common', 'combo_tex'),
(10302, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10303, 'fighter', 'common', 'common', 'comboattack04_tex'),
(10303, 'glaiver', 'common', 'common', 'combo_tex'),
(10303, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10304, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10305, 'soulless', 'common', 'common', 'comboattack2_tex'),
(10330, 'glaiver', 'common', 'common', 'combo_tex'),
(10399, 'glaiver', 'common', 'common', 'combo_tex'),
(10400, 'archer', 'common', 'common', 'arrowshot_tex'),
(10400, 'assassin', 'common', 'common', 'c12_meleecombo'),
(10400, 'berserker', 'common', 'common', 'comboattack_tex'),
(10400, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(10400, 'engineer', 'common', 'common', 'cannonshot_tex'),
(10400, 'fighter', 'common', 'common', 'comboattack01_tex'),
(10400, 'glaiver', 'common', 'common', 'combo_tex'),
(10400, 'lancer', 'common', 'common', 'comboattack_tex'),
(10400, 'priest', 'common', 'common', 'magicshot_tex'),
(10400, 'slayer', 'common', 'common', 'comboattack_tex'),
(10400, 'sorcerer', 'common', 'common', 'fireball_tex'),
(10400, 'warrior', 'common', 'common', 'comboattack_tex'),
(10401, 'fighter', 'common', 'common', 'comboattack02_tex'),
(10401, 'glaiver', 'common', 'common', 'combo_tex'),
(10402, 'fighter', 'common', 'common', 'comboattack03_tex'),
(10402, 'glaiver', 'common', 'common', 'combo_tex'),
(10403, 'fighter', 'common', 'common', 'comboattack04_tex'),
(10403, 'glaiver', 'common', 'common', 'combo_tex'),
(10430, 'glaiver', 'common', 'common', 'combo_tex'),
(10499, 'glaiver', 'common', 'common', 'combo_tex'),
(10500, 'archer', 'common', 'common', 'arrowshot_tex'),
(10500, 'assassin', 'common', 'common', 'c12_meleecombo'),
(10500, 'berserker', 'common', 'common', 'comboattack_tex'),
(10500, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(10500, 'engineer', 'common', 'common', 'cannonshot_tex'),
(10500, 'fighter', 'common', 'common', 'comboattack01_tex'),
(10500, 'glaiver', 'common', 'common', 'combo_tex'),
(10500, 'lancer', 'common', 'common', 'comboattack_tex'),
(10500, 'priest', 'common', 'common', 'magicshot_tex'),
(10500, 'slayer', 'common', 'common', 'comboattack_tex'),
(10500, 'sorcerer', 'common', 'common', 'fireball_tex'),
(10500, 'warrior', 'common', 'common', 'comboattack_tex'),
(10501, 'fighter', 'common', 'common', 'comboattack02_tex'),
(10501, 'glaiver', 'common', 'common', 'combo_tex'),
(10502, 'fighter', 'common', 'common', 'comboattack03_tex'),
(10502, 'glaiver', 'common', 'common', 'combo_tex'),
(10503, 'fighter', 'common', 'common', 'comboattack04_tex'),
(10503, 'glaiver', 'common', 'common', 'combo_tex'),
(10530, 'glaiver', 'common', 'common', 'combo_tex'),
(10599, 'glaiver', 'common', 'common', 'combo_tex'),
(10600, 'archer', 'common', 'common', 'arrowshot_tex'),
(10600, 'assassin', 'common', 'common', 'c12_meleecombo'),
(10600, 'berserker', 'common', 'common', 'comboattack_tex'),
(10600, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(10600, 'engineer', 'common', 'common', 'cannonshot_tex'),
(10600, 'fighter', 'common', 'common', 'comboattack01_tex'),
(10600, 'glaiver', 'common', 'common', 'combo_tex'),
(10600, 'lancer', 'common', 'common', 'comboattack_tex'),
(10600, 'priest', 'common', 'common', 'magicshot_tex'),
(10600, 'slayer', 'common', 'common', 'comboattack_tex'),
(10600, 'sorcerer', 'common', 'common', 'fireball_tex'),
(10600, 'warrior', 'common', 'common', 'comboattack_tex'),
(10601, 'fighter', 'common', 'common', 'comboattack02_tex'),
(10601, 'glaiver', 'common', 'common', 'combo_tex'),
(10602, 'fighter', 'common', 'common', 'comboattack03_tex'),
(10602, 'glaiver', 'common', 'common', 'combo_tex'),
(10603, 'fighter', 'common', 'common', 'comboattack04_tex'),
(10603, 'glaiver', 'common', 'common', 'combo_tex'),
(10630, 'glaiver', 'common', 'common', 'combo_tex'),
(10699, 'glaiver', 'common', 'common', 'combo_tex'),
(10700, 'archer', 'common', 'common', 'arrowshot_tex'),
(10700, 'assassin', 'common', 'common', 'c12_meleecombo'),
(10700, 'berserker', 'common', 'common', 'comboattack_tex'),
(10700, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(10700, 'engineer', 'common', 'common', 'cannonshot_tex'),
(10700, 'fighter', 'common', 'common', 'comboattack01_tex'),
(10700, 'glaiver', 'common', 'common', 'combo_tex'),
(10700, 'lancer', 'common', 'common', 'comboattack_tex'),
(10700, 'priest', 'common', 'common', 'magicshot_tex'),
(10700, 'slayer', 'common', 'common', 'comboattack_tex'),
(10700, 'sorcerer', 'common', 'common', 'fireball_tex'),
(10700, 'warrior', 'common', 'common', 'comboattack_tex'),
(10701, 'fighter', 'common', 'common', 'comboattack02_tex'),
(10701, 'glaiver', 'common', 'common', 'combo_tex'),
(10702, 'fighter', 'common', 'common', 'comboattack03_tex'),
(10702, 'glaiver', 'common', 'common', 'combo_tex'),
(10703, 'fighter', 'common', 'common', 'comboattack04_tex'),
(10703, 'glaiver', 'common', 'common', 'combo_tex'),
(10730, 'glaiver', 'common', 'common', 'combo_tex'),
(10799, 'glaiver', 'common', 'common', 'combo_tex'),
(10800, 'archer', 'common', 'common', 'arrowshot_tex'),
(10800, 'assassin', 'common', 'common', 'c12_meleecombo'),
(10800, 'berserker', 'common', 'common', 'comboattack_tex'),
(10800, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(10800, 'engineer', 'common', 'common', 'cannonshot_tex'),
(10800, 'fighter', 'common', 'common', 'comboattack01_tex'),
(10800, 'glaiver', 'common', 'common', 'combo_tex'),
(10800, 'lancer', 'common', 'common', 'comboattack_tex'),
(10800, 'priest', 'common', 'common', 'magicshot_tex'),
(10800, 'slayer', 'common', 'common', 'comboattack_tex'),
(10800, 'sorcerer', 'common', 'common', 'fireball_tex'),
(10800, 'warrior', 'common', 'common', 'comboattack_tex'),
(10801, 'fighter', 'common', 'common', 'comboattack02_tex'),
(10801, 'glaiver', 'common', 'common', 'combo_tex'),
(10802, 'fighter', 'common', 'common', 'comboattack03_tex'),
(10802, 'glaiver', 'common', 'common', 'combo_tex'),
(10803, 'fighter', 'common', 'common', 'comboattack04_tex'),
(10803, 'glaiver', 'common', 'common', 'combo_tex'),
(10830, 'glaiver', 'common', 'common', 'combo_tex'),
(10899, 'glaiver', 'common', 'common', 'combo_tex'),
(10900, 'archer', 'common', 'common', 'arrowshot_tex'),
(10900, 'assassin', 'common', 'common', 'c12_meleecombo'),
(10900, 'berserker', 'common', 'common', 'comboattack_tex'),
(10900, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(10900, 'engineer', 'common', 'common', 'cannonshot_tex'),
(10900, 'fighter', 'common', 'common', 'comboattack01_tex'),
(10900, 'glaiver', 'common', 'common', 'combo_tex'),
(10900, 'lancer', 'common', 'common', 'comboattack_tex'),
(10900, 'priest', 'common', 'common', 'magicshot_tex'),
(10900, 'slayer', 'common', 'common', 'comboattack_tex'),
(10900, 'sorcerer', 'common', 'common', 'fireball_tex'),
(10900, 'warrior', 'common', 'common', 'comboattack_tex'),
(10901, 'fighter', 'common', 'common', 'comboattack02_tex'),
(10901, 'glaiver', 'common', 'common', 'combo_tex'),
(10902, 'fighter', 'common', 'common', 'comboattack03_tex'),
(10902, 'glaiver', 'common', 'common', 'combo_tex'),
(10903, 'fighter', 'common', 'common', 'comboattack04_tex'),
(10903, 'glaiver', 'common', 'common', 'combo_tex'),
(10930, 'glaiver', 'common', 'common', 'combo_tex'),
(10999, 'glaiver', 'common', 'common', 'combo_tex'),
(11000, 'archer', 'common', 'common', 'arrowshot_tex'),
(11000, 'assassin', 'common', 'common', 'c12_meleecombo'),
(11000, 'berserker', 'common', 'common', 'comboattack_tex'),
(11000, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(11000, 'engineer', 'common', 'common', 'cannonshot_tex'),
(11000, 'fighter', 'common', 'common', 'comboattack01_tex'),
(11000, 'glaiver', 'common', 'common', 'combo_tex'),
(11000, 'lancer', 'common', 'common', 'comboattack_tex'),
(11000, 'priest', 'common', 'common', 'magicshot_tex'),
(11000, 'slayer', 'common', 'common', 'comboattack_tex'),
(11000, 'sorcerer', 'common', 'common', 'fireball_tex'),
(11000, 'warrior', 'common', 'common', 'comboattack_tex'),
(11001, 'fighter', 'common', 'common', 'comboattack02_tex'),
(11001, 'glaiver', 'common', 'common', 'combo_tex'),
(11002, 'fighter', 'common', 'common', 'comboattack03_tex'),
(11002, 'glaiver', 'common', 'common', 'combo_tex'),
(11003, 'fighter', 'common', 'common', 'comboattack04_tex'),
(11003, 'glaiver', 'common', 'common', 'combo_tex'),
(11030, 'glaiver', 'common', 'common', 'combo_tex'),
(11099, 'glaiver', 'common', 'common', 'combo_tex'),
(11100, 'archer', 'common', 'common', 'arrowshot_tex'),
(11100, 'assassin', 'common', 'common', 'c12_meleecombo'),
(11100, 'berserker', 'common', 'common', 'comboattack_tex'),
(11100, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(11100, 'engineer', 'common', 'common', 'cannonshot_tex'),
(11100, 'fighter', 'common', 'common', 'comboattack01_tex'),
(11100, 'glaiver', 'common', 'common', 'combo_tex'),
(11100, 'lancer', 'common', 'common', 'comboattack_tex'),
(11100, 'priest', 'common', 'common', 'magicshot_tex'),
(11100, 'slayer', 'common', 'common', 'comboattack_tex'),
(11100, 'sorcerer', 'common', 'common', 'fireball_tex'),
(11100, 'warrior', 'common', 'common', 'comboattack_tex'),
(11101, 'fighter', 'common', 'common', 'comboattack02_tex'),
(11101, 'glaiver', 'common', 'common', 'combo_tex'),
(11102, 'fighter', 'common', 'common', 'comboattack03_tex'),
(11102, 'glaiver', 'common', 'common', 'combo_tex'),
(11103, 'fighter', 'common', 'common', 'comboattack04_tex'),
(11103, 'glaiver', 'common', 'common', 'combo_tex'),
(11130, 'glaiver', 'common', 'common', 'combo_tex'),
(11199, 'glaiver', 'common', 'common', 'combo_tex'),
(11200, 'archer', 'common', 'common', 'arrowshot_tex'),
(11200, 'assassin', 'common', 'common', 'c12_meleecombo'),
(11200, 'berserker', 'common', 'common', 'comboattack_tex'),
(11200, 'elementalist', 'common', 'common', 'elementalshot_tex'),
(11200, 'engineer', 'common', 'common', 'cannonshot_tex'),
(11200, 'fighter', 'common', 'common', 'comboattack01_tex'),
(11200, 'glaiver', 'common', 'common', 'combo_tex'),
(11200, 'lancer', 'common', 'common', 'comboattack_tex'),
(11200, 'priest', 'common', 'common', 'magicshot_tex'),
(11200, 'slayer', 'common', 'common', 'comboattack_tex'),
(11200, 'sorcerer', 'common', 'common', 'fireball_tex'),
(11200, 'warrior', 'common', 'common', 'comboattack_tex'),
(11201, 'fighter', 'common', 'common', 'comboattack02_tex'),
(11201, 'glaiver', 'common', 'common', 'combo_tex'),
(11202, 'fighter', 'common', 'common', 'comboattack03_tex'),
(11202, 'glaiver', 'common', 'common', 'combo_tex'),
(11203, 'fighter', 'common', 'common', 'comboattack04_tex'),
(11203, 'glaiver', 'common', 'common', 'combo_tex'),
(11230, 'glaiver', 'common', 'common', 'combo_tex'),
(11299, 'glaiver', 'common', 'common', 'combo_tex'),
(15100, 'glaiver', 'common', 'common', 'combo_tex'),
(15101, 'glaiver', 'common', 'common', 'combo_tex'),
(15102, 'glaiver', 'common', 'common', 'combo_tex'),
(15103, 'glaiver', 'common', 'common', 'combo_tex'),
(15130, 'glaiver', 'common', 'common', 'combo_tex'),
(15200, 'glaiver', 'common', 'common', 'combo_tex'),
(15201, 'glaiver', 'common', 'common', 'combo_tex'),
(15202, 'glaiver', 'common', 'common', 'combo_tex'),
(15203, 'glaiver', 'common', 'common', 'combo_tex'),
(15230, 'glaiver', 'common', 'common', 'combo_tex'),
(15300, 'glaiver', 'common', 'common', 'combo_tex'),
(15301, 'glaiver', 'common', 'common', 'combo_tex'),
(15302, 'glaiver', 'common', 'common', 'combo_tex'),
(15303, 'glaiver', 'common', 'common', 'combo_tex'),
(15330, 'glaiver', 'common', 'common', 'combo_tex'),
(15400, 'glaiver', 'common', 'common', 'combo_tex'),
(15401, 'glaiver', 'common', 'common', 'combo_tex'),
(15402, 'glaiver', 'common', 'common', 'combo_tex'),
(15403, 'glaiver', 'common', 'common', 'combo_tex'),
(15430, 'glaiver', 'common', 'common', 'combo_tex'),
(15500, 'glaiver', 'common', 'common', 'combo_tex'),
(15501, 'glaiver', 'common', 'common', 'combo_tex'),
(15502, 'glaiver', 'common', 'common', 'combo_tex'),
(15503, 'glaiver', 'common', 'common', 'combo_tex'),
(15530, 'glaiver', 'common', 'common', 'combo_tex'),
(15600, 'glaiver', 'common', 'common', 'combo_tex'),
(15601, 'glaiver', 'common', 'common', 'combo_tex'),
(15602, 'glaiver', 'common', 'common', 'combo_tex'),
(15603, 'glaiver', 'common', 'common', 'combo_tex'),
(15630, 'glaiver', 'common', 'common', 'combo_tex'),
(15700, 'glaiver', 'common', 'common', 'combo_tex'),
(15701, 'glaiver', 'common', 'common', 'combo_tex'),
(15702, 'glaiver', 'common', 'common', 'combo_tex'),
(15703, 'glaiver', 'common', 'common', 'combo_tex'),
(15730, 'glaiver', 'common', 'common', 'combo_tex'),
(15800, 'glaiver', 'common', 'common', 'combo_tex'),
(15801, 'glaiver', 'common', 'common', 'combo_tex'),
(15802, 'glaiver', 'common', 'common', 'combo_tex'),
(15803, 'glaiver', 'common', 'common', 'combo_tex'),
(15830, 'glaiver', 'common', 'common', 'combo_tex'),
(15900, 'glaiver', 'common', 'common', 'combo_tex'),
(15901, 'glaiver', 'common', 'common', 'combo_tex'),
(15902, 'glaiver', 'common', 'common', 'combo_tex'),
(15903, 'glaiver', 'common', 'common', 'combo_tex'),
(15930, 'glaiver', 'common', 'common', 'combo_tex'),
(16000, 'glaiver', 'common', 'common', 'combo_tex'),
(16001, 'glaiver', 'common', 'common', 'combo_tex'),
(16002, 'glaiver', 'common', 'common', 'combo_tex'),
(16003, 'glaiver', 'common', 'common', 'combo_tex'),
(16030, 'glaiver', 'common', 'common', 'combo_tex'),
(16100, 'glaiver', 'common', 'common', 'combo_tex'),
(16101, 'glaiver', 'common', 'common', 'combo_tex'),
(16102, 'glaiver', 'common', 'common', 'combo_tex'),
(16103, 'glaiver', 'common', 'common', 'combo_tex'),
(16130, 'glaiver', 'common', 'common', 'combo_tex'),
(16200, 'glaiver', 'common', 'common', 'combo_tex'),
(16201, 'glaiver', 'common', 'common', 'combo_tex'),
(16202, 'glaiver', 'common', 'common', 'combo_tex'),
(16203, 'glaiver', 'common', 'common', 'combo_tex'),
(16230, 'glaiver', 'common', 'common', 'combo_tex'),
(20100, 'archer', 'common', 'common', 'arrowshower_tex'),
(20100, 'assassin', 'common', 'common', 'c12_dash'),
(20100, 'berserker', 'common', 'common', 'weapondefence_tex'),
(20100, 'elementalist', 'common', 'common', 'suckhp_tex'),
(20100, 'engineer', 'common', 'common', 'mortarshot_tex'),
(20100, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20100, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20100, 'lancer', 'common', 'common', 'defence_tex'),
(20100, 'priest', 'common', 'common', 'healingwind_tex'),
(20100, 'slayer', 'common', 'common', 'handyslash_tex'),
(20100, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(20100, 'warrior', 'common', 'common', 'tumbling_tex'),
(20101, 'fighter', 'common', 'common', 'smashattack01_tex'),
(20101, 'slayer', 'common', 'common', 'handyslash_tex'),
(20102, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20102, 'slayer', 'common', 'common', 'handyslash_tex'),
(20103, 'fighter', 'common', 'common', 'smashattack03_tex'),
(20104, 'fighter', 'common', 'common', 'smashattack04_tex'),
(20110, 'archer', 'common', 'common', 'arrowshower_tex'),
(20112, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(20130, 'assassin', 'common', 'common', 'c12_dash'),
(20130, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20130, 'slayer', 'common', 'common', 'handyslash_tex'),
(20199, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20200, 'archer', 'common', 'common', 'arrowshower_tex'),
(20200, 'berserker', 'common', 'common', 'weapondefence_tex'),
(20200, 'elementalist', 'common', 'common', 'suckhp_tex'),
(20200, 'engineer', 'common', 'common', 'mortarshot_tex'),
(20200, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20200, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20200, 'lancer', 'common', 'common', 'defence_tex'),
(20200, 'priest', 'common', 'common', 'healingwind_tex'),
(20200, 'slayer', 'common', 'common', 'handyslash_tex'),
(20200, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(20201, 'fighter', 'common', 'common', 'smashattack01_tex'),
(20201, 'slayer', 'common', 'common', 'handyslash_tex'),
(20202, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20202, 'slayer', 'common', 'common', 'handyslash_tex'),
(20203, 'fighter', 'common', 'common', 'smashattack03_tex'),
(20204, 'fighter', 'common', 'common', 'smashattack04_tex'),
(20210, 'archer', 'common', 'common', 'arrowshower_tex'),
(20212, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(20230, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20230, 'slayer', 'common', 'common', 'handyslash_tex'),
(20299, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20300, 'archer', 'common', 'common', 'arrowshower_tex'),
(20300, 'elementalist', 'common', 'common', 'suckhp_tex'),
(20300, 'engineer', 'common', 'common', 'mortarshot_tex'),
(20300, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20300, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20300, 'priest', 'common', 'common', 'healingwind_tex'),
(20300, 'slayer', 'common', 'common', 'handyslash_tex'),
(20300, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(20301, 'fighter', 'common', 'common', 'smashattack01_tex'),
(20301, 'slayer', 'common', 'common', 'handyslash_tex'),
(20302, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20302, 'slayer', 'common', 'common', 'handyslash_tex'),
(20303, 'fighter', 'common', 'common', 'smashattack03_tex'),
(20304, 'fighter', 'common', 'common', 'smashattack04_tex'),
(20310, 'archer', 'common', 'common', 'arrowshower_tex'),
(20312, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(20330, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20330, 'slayer', 'common', 'common', 'handyslash_tex'),
(20399, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20400, 'archer', 'common', 'common', 'arrowshower_tex'),
(20400, 'elementalist', 'common', 'common', 'suckhp_tex'),
(20400, 'engineer', 'common', 'common', 'mortarshot_tex'),
(20400, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20400, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20400, 'priest', 'common', 'common', 'healingwind_tex'),
(20400, 'slayer', 'common', 'common', 'handyslash_tex'),
(20400, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(20401, 'fighter', 'common', 'common', 'smashattack01_tex'),
(20401, 'slayer', 'common', 'common', 'handyslash_tex'),
(20402, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20402, 'slayer', 'common', 'common', 'handyslash_tex'),
(20403, 'fighter', 'common', 'common', 'smashattack03_tex'),
(20404, 'fighter', 'common', 'common', 'smashattack04_tex'),
(20410, 'archer', 'common', 'common', 'arrowshower_tex'),
(20412, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(20430, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20430, 'slayer', 'common', 'common', 'handyslash_tex'),
(20499, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20500, 'archer', 'common', 'common', 'arrowshower_tex'),
(20500, 'elementalist', 'common', 'common', 'suckhp_tex'),
(20500, 'engineer', 'common', 'common', 'mortarshot_tex'),
(20500, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20500, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20500, 'priest', 'common', 'common', 'healingwind_tex'),
(20500, 'slayer', 'common', 'common', 'handyslash_tex'),
(20500, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(20501, 'fighter', 'common', 'common', 'smashattack01_tex'),
(20501, 'slayer', 'common', 'common', 'handyslash_tex'),
(20502, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20502, 'slayer', 'common', 'common', 'handyslash_tex'),
(20503, 'fighter', 'common', 'common', 'smashattack03_tex'),
(20504, 'fighter', 'common', 'common', 'smashattack04_tex'),
(20510, 'archer', 'common', 'common', 'arrowshower_tex'),
(20512, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(20530, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20530, 'slayer', 'common', 'common', 'handyslash_tex'),
(20599, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20600, 'archer', 'common', 'common', 'arrowshower_tex'),
(20600, 'elementalist', 'common', 'common', 'suckhp_tex'),
(20600, 'engineer', 'common', 'common', 'mortarshot_tex'),
(20600, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20600, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20600, 'priest', 'common', 'common', 'healingwind_tex'),
(20600, 'slayer', 'common', 'common', 'handyslash_tex'),
(20600, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(20601, 'fighter', 'common', 'common', 'smashattack01_tex'),
(20601, 'slayer', 'common', 'common', 'handyslash_tex'),
(20602, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20602, 'slayer', 'common', 'common', 'handyslash_tex'),
(20603, 'fighter', 'common', 'common', 'smashattack03_tex'),
(20604, 'fighter', 'common', 'common', 'smashattack04_tex'),
(20610, 'archer', 'common', 'common', 'arrowshower_tex'),
(20612, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(20630, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20630, 'slayer', 'common', 'common', 'handyslash_tex'),
(20699, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20700, 'archer', 'common', 'common', 'arrowshower_tex'),
(20700, 'elementalist', 'common', 'common', 'suckhp_tex'),
(20700, 'engineer', 'common', 'common', 'mortarshot_tex'),
(20700, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20700, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20700, 'priest', 'common', 'common', 'healingwind_tex'),
(20700, 'slayer', 'common', 'common', 'handyslash_tex'),
(20700, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(20701, 'fighter', 'common', 'common', 'smashattack01_tex'),
(20701, 'slayer', 'common', 'common', 'handyslash_tex'),
(20702, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20702, 'slayer', 'common', 'common', 'handyslash_tex'),
(20703, 'fighter', 'common', 'common', 'smashattack03_tex'),
(20704, 'fighter', 'common', 'common', 'smashattack04_tex'),
(20710, 'archer', 'common', 'common', 'arrowshower_tex'),
(20712, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(20730, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20730, 'slayer', 'common', 'common', 'handyslash_tex'),
(20799, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(20800, 'archer', 'common', 'common', 'arrowshower_tex'),
(20800, 'elementalist', 'common', 'common', 'suckhp_tex'),
(20800, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20800, 'priest', 'common', 'common', 'healingwind_tex'),
(20800, 'slayer', 'common', 'common', 'handyslash_tex'),
(20800, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(20801, 'fighter', 'common', 'common', 'smashattack01_tex'),
(20801, 'slayer', 'common', 'common', 'handyslash_tex'),
(20802, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20802, 'slayer', 'common', 'common', 'handyslash_tex'),
(20803, 'fighter', 'common', 'common', 'smashattack03_tex'),
(20804, 'fighter', 'common', 'common', 'smashattack04_tex'),
(20810, 'archer', 'common', 'common', 'arrowshower_tex'),
(20812, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(20830, 'slayer', 'common', 'common', 'handyslash_tex'),
(20900, 'archer', 'common', 'common', 'arrowshower_tex'),
(20900, 'elementalist', 'common', 'common', 'suckhp_tex'),
(20900, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20900, 'priest', 'common', 'common', 'healingwind_tex'),
(20900, 'slayer', 'common', 'common', 'handyslash_tex'),
(20900, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(20901, 'fighter', 'common', 'common', 'smashattack01_tex'),
(20901, 'slayer', 'common', 'common', 'handyslash_tex'),
(20902, 'fighter', 'common', 'common', 'smashattack02_tex'),
(20902, 'slayer', 'common', 'common', 'handyslash_tex'),
(20903, 'fighter', 'common', 'common', 'smashattack03_tex'),
(20904, 'fighter', 'common', 'common', 'smashattack04_tex'),
(20910, 'archer', 'common', 'common', 'arrowshower_tex'),
(20912, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(20930, 'slayer', 'common', 'common', 'handyslash_tex'),
(21000, 'archer', 'common', 'common', 'arrowshower_tex'),
(21000, 'elementalist', 'common', 'common', 'suckhp_tex'),
(21000, 'fighter', 'common', 'common', 'smashattack02_tex'),
(21000, 'slayer', 'common', 'common', 'handyslash_tex'),
(21000, 'sorcerer', 'common', 'common', 'c5_iceorb'),
(21001, 'fighter', 'common', 'common', 'smashattack01_tex'),
(21001, 'slayer', 'common', 'common', 'handyslash_tex'),
(21002, 'fighter', 'common', 'common', 'smashattack02_tex'),
(21002, 'slayer', 'common', 'common', 'handyslash_tex'),
(21003, 'fighter', 'common', 'common', 'smashattack03_tex'),
(21004, 'fighter', 'common', 'common', 'smashattack04_tex'),
(21010, 'archer', 'common', 'common', 'arrowshower_tex'),
(21012, 'elementalist', 'common', 'common', 'mpsupplycharge_tex'),
(21030, 'slayer', 'common', 'common', 'handyslash_tex'),
(21100, 'archer', 'common', 'common', 'arrowshower_tex'),
(21100, 'fighter', 'common', 'common', 'smashattack02_tex'),
(21100, 'slayer', 'common', 'common', 'handyslash_tex'),
(21101, 'fighter', 'common', 'common', 'smashattack01_tex'),
(21101, 'slayer', 'common', 'common', 'handyslash_tex'),
(21102, 'fighter', 'common', 'common', 'smashattack02_tex'),
(21102, 'slayer', 'common', 'common', 'handyslash_tex'),
(21103, 'fighter', 'common', 'common', 'smashattack03_tex'),
(21104, 'fighter', 'common', 'common', 'smashattack04_tex'),
(21130, 'slayer', 'common', 'common', 'handyslash_tex'),
(21200, 'fighter', 'common', 'common', 'smashattack02_tex'),
(21201, 'fighter', 'common', 'common', 'smashattack01_tex'),
(21202, 'fighter', 'common', 'common', 'smashattack02_tex'),
(21203, 'fighter', 'common', 'common', 'smashattack03_tex'),
(21204, 'fighter', 'common', 'common', 'smashattack04_tex'),
(25100, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25130, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25200, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25230, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25300, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25330, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25400, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25430, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25500, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25530, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25600, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25630, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25700, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(25730, 'glaiver', 'common', 'common', 'fatalshot_tex'),
(30100, 'archer', 'common', 'common', 'chargearrow_tex'),
(30100, 'assassin', 'common', 'common', 'c12_rapidshot'),
(30100, 'berserker', 'common', 'common', 'blastslash_tex'),
(30100, 'elementalist', 'common', 'common', 'rage_tex'),
(30100, 'engineer', 'common', 'common', 'buckshot_tex'),
(30100, 'fighter', 'common', 'common', 'dragonrisingblow_tex'),
(30100, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30100, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30100, 'priest', 'common', 'common', 'healarea_tex'),
(30100, 'slayer', 'common', 'common', 'sworddance_tex'),
(30100, 'sorcerer', 'common', 'common', 'shocktrap_tex'),
(30100, 'soulless', 'common', 'common', 'chainsmash_tex'),
(30100, 'warrior', 'common', 'common', 'nanmu_tex'),
(30130, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30130, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30130, 'priest', 'common', 'common', 'healarea_tex'),
(30199, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30200, 'archer', 'common', 'common', 'chargearrow_tex'),
(30200, 'assassin', 'common', 'common', 'c12_rapidshot'),
(30200, 'berserker', 'common', 'common', 'blastslash_tex'),
(30200, 'elementalist', 'common', 'common', 'rage_tex'),
(30200, 'engineer', 'common', 'common', 'buckshot_tex'),
(30200, 'fighter', 'common', 'common', 'dragonrisingblow_tex'),
(30200, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30200, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30200, 'priest', 'common', 'common', 'healarea_tex'),
(30200, 'slayer', 'common', 'common', 'sworddance_tex'),
(30200, 'sorcerer', 'common', 'common', 'shocktrap_tex'),
(30200, 'soulless', 'common', 'common', 'chainsmash_tex'),
(30200, 'warrior', 'common', 'common', 'nanmu_tex'),
(30230, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30230, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30230, 'priest', 'common', 'common', 'healarea_tex'),
(30299, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30300, 'archer', 'common', 'common', 'chargearrow_tex'),
(30300, 'assassin', 'common', 'common', 'c12_rapidshot'),
(30300, 'berserker', 'common', 'common', 'blastslash_tex'),
(30300, 'elementalist', 'common', 'common', 'rage_tex'),
(30300, 'engineer', 'common', 'common', 'buckshot_tex'),
(30300, 'fighter', 'common', 'common', 'arrowshower_tex'),
(30300, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30300, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30300, 'priest', 'common', 'common', 'healarea_tex'),
(30300, 'slayer', 'common', 'common', 'sworddance_tex'),
(30300, 'sorcerer', 'common', 'common', 'shocktrap_tex'),
(30300, 'soulless', 'common', 'common', 'chainsmash_tex'),
(30300, 'warrior', 'common', 'common', 'nanmu_tex'),
(30330, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30330, 'priest', 'common', 'common', 'healarea_tex'),
(30399, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30400, 'archer', 'common', 'common', 'chargearrow_tex'),
(30400, 'assassin', 'common', 'common', 'c12_rapidshot'),
(30400, 'berserker', 'common', 'common', 'blastslash_tex'),
(30400, 'engineer', 'common', 'common', 'buckshot_tex'),
(30400, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30400, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30400, 'priest', 'common', 'common', 'healarea_tex'),
(30400, 'slayer', 'common', 'common', 'sworddance_tex'),
(30400, 'warrior', 'common', 'common', 'nanmu_tex'),
(30430, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30430, 'priest', 'common', 'common', 'healarea_tex'),
(30499, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30500, 'archer', 'common', 'common', 'chargearrow_tex'),
(30500, 'assassin', 'common', 'common', 'c12_rapidshot'),
(30500, 'berserker', 'common', 'common', 'blastslash_tex'),
(30500, 'engineer', 'common', 'common', 'buckshot_tex'),
(30500, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30500, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30500, 'priest', 'common', 'common', 'healarea_tex'),
(30500, 'slayer', 'common', 'common', 'sworddance_tex'),
(30500, 'warrior', 'common', 'common', 'nanmu_tex'),
(30530, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30530, 'priest', 'common', 'common', 'healarea_tex'),
(30599, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30600, 'archer', 'common', 'common', 'chargearrow_tex'),
(30600, 'assassin', 'common', 'common', 'c12_rapidshot'),
(30600, 'berserker', 'common', 'common', 'blastslash_tex'),
(30600, 'engineer', 'common', 'common', 'buckshot_tex'),
(30600, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30600, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30600, 'priest', 'common', 'common', 'healarea_tex'),
(30600, 'slayer', 'common', 'common', 'sworddance_tex'),
(30600, 'warrior', 'common', 'common', 'nanmu_tex'),
(30630, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30630, 'priest', 'common', 'common', 'healarea_tex'),
(30699, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30700, 'archer', 'common', 'common', 'chargearrow_tex'),
(30700, 'assassin', 'common', 'common', 'c12_rapidshot'),
(30700, 'berserker', 'common', 'common', 'blastslash_tex'),
(30700, 'engineer', 'common', 'common', 'buckshot_tex'),
(30700, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30700, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30700, 'priest', 'common', 'common', 'healarea_tex'),
(30700, 'slayer', 'common', 'common', 'sworddance_tex'),
(30700, 'warrior', 'common', 'common', 'nanmu_tex'),
(30730, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30730, 'priest', 'common', 'common', 'healarea_tex'),
(30799, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30800, 'archer', 'common', 'common', 'chargearrow_tex'),
(30800, 'assassin', 'common', 'common', 'c12_rapidshot'),
(30800, 'berserker', 'common', 'common', 'blastslash_tex'),
(30800, 'engineer', 'common', 'common', 'buckshot_tex'),
(30800, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30800, 'lancer', 'common', 'common', 'screwthrough_tex'),
(30800, 'slayer', 'common', 'common', 'sworddance_tex'),
(30800, 'warrior', 'common', 'common', 'nanmu_tex'),
(30830, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30899, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30900, 'archer', 'common', 'common', 'chargearrow_tex'),
(30900, 'berserker', 'common', 'common', 'blastslash_tex'),
(30900, 'engineer', 'common', 'common', 'buckshot_tex'),
(30900, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30900, 'slayer', 'common', 'common', 'sworddance_tex'),
(30900, 'warrior', 'common', 'common', 'nanmu_tex'),
(30930, 'glaiver', 'common', 'common', 'throwglave_tex'),
(30999, 'glaiver', 'common', 'common', 'throwglave_tex'),
(31000, 'archer', 'common', 'common', 'chargearrow_tex'),
(31000, 'berserker', 'common', 'common', 'blastslash_tex'),
(31000, 'engineer', 'common', 'common', 'buckshot_tex'),
(31000, 'slayer', 'common', 'common', 'sworddance_tex'),
(31100, 'archer', 'common', 'common', 'chargearrow_tex'),
(31100, 'berserker', 'common', 'common', 'blastslash_tex'),
(31100, 'engineer', 'common', 'common', 'buckshot_tex'),
(31100, 'slayer', 'common', 'common', 'sworddance_tex'),
(31101, 'slayer', 'common', 'common', 'sworddance_tex'),
(31102, 'slayer', 'common', 'common', 'sworddance_tex'),
(31130, 'slayer', 'common', 'common', 'sworddance_tex'),
(35100, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35130, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35200, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35230, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35300, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35330, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35400, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35430, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35500, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35530, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35600, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35630, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35700, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35730, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35800, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35830, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35900, 'glaiver', 'common', 'common', 'throwglave_tex'),
(35930, 'glaiver', 'common', 'common', 'throwglave_tex'),
(40100, 'archer', 'common', 'common', 'througharrow_tex'),
(40100, 'assassin', 'common', 'common', 'c12_dashattack'),
(40100, 'berserker', 'common', 'common', 'bash_tex'),
(40100, 'elementalist', 'common', 'common', 'slowball_tex'),
(40100, 'engineer', 'common', 'common', 'gunbrandish_tex'),
(40100, 'fighter', 'common', 'common', 'poundonground_tex'),
(40100, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40100, 'lancer', 'common', 'common', 'roar_tex'),
(40100, 'slayer', 'common', 'common', 'tumbling_tex'),
(40100, 'sorcerer', 'common', 'common', 'blastball_tex'),
(40100, 'soulless', 'common', 'common', 'chainblow_tex'),
(40100, 'warrior', 'common', 'common', 'pointattack_tex'),
(40101, 'assassin', 'common', 'common', 'c12_dashattack'),
(40102, 'assassin', 'common', 'common', 'c12_dashattack'),
(40110, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40111, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40130, 'lancer', 'common', 'common', 'roar_tex'),
(40130, 'soulless', 'common', 'common', 'chainblow_tex'),
(40199, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40200, 'archer', 'common', 'common', 'througharrow_tex'),
(40200, 'assassin', 'common', 'common', 'c12_dashattack'),
(40200, 'berserker', 'common', 'common', 'bash_tex'),
(40200, 'elementalist', 'common', 'common', 'slowball_tex'),
(40200, 'engineer', 'common', 'common', 'gunbrandish_tex'),
(40200, 'fighter', 'common', 'common', 'poundonground_tex'),
(40200, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40200, 'lancer', 'common', 'common', 'roar_tex'),
(40200, 'slayer', 'common', 'common', 'tumbling_tex'),
(40200, 'sorcerer', 'common', 'common', 'blastball_tex'),
(40200, 'soulless', 'common', 'common', 'chainblow_tex'),
(40200, 'warrior', 'common', 'common', 'pointattack_tex'),
(40201, 'assassin', 'common', 'common', 'c12_dashattack'),
(40202, 'assassin', 'common', 'common', 'c12_dashattack'),
(40210, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40211, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40230, 'lancer', 'common', 'common', 'roar_tex'),
(40230, 'slayer', 'common', 'common', 'tumbling_tex'),
(40230, 'soulless', 'common', 'common', 'chainblow_tex'),
(40299, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40300, 'archer', 'common', 'common', 'througharrow_tex'),
(40300, 'assassin', 'common', 'common', 'c12_dashattack'),
(40300, 'berserker', 'common', 'common', 'bash_tex'),
(40300, 'engineer', 'common', 'common', 'gunbrandish_tex'),
(40300, 'fighter', 'common', 'common', 'poundonground_tex'),
(40300, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40300, 'lancer', 'common', 'common', 'roar_tex'),
(40300, 'sorcerer', 'common', 'common', 'blastball_tex'),
(40300, 'soulless', 'common', 'common', 'chainblow_tex'),
(40300, 'warrior', 'common', 'common', 'pointattack_tex'),
(40301, 'assassin', 'common', 'common', 'c12_dashattack'),
(40302, 'assassin', 'common', 'common', 'c12_dashattack'),
(40310, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40311, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40330, 'lancer', 'common', 'common', 'roar_tex'),
(40330, 'soulless', 'common', 'common', 'chainblow_tex'),
(40331, 'soulless', 'common', 'common', 'chainblow_awaken_tex'),
(40361, 'soulless', 'common', 'common', 'chainblow_awaken_tex'),
(40399, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40400, 'archer', 'common', 'common', 'througharrow_tex'),
(40400, 'assassin', 'common', 'common', 'c12_dashattack'),
(40400, 'berserker', 'common', 'common', 'bash_tex'),
(40400, 'engineer', 'common', 'common', 'gunbrandish_tex'),
(40400, 'fighter', 'common', 'common', 'poundonground_tex'),
(40400, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40400, 'lancer', 'common', 'common', 'roar_tex'),
(40400, 'sorcerer', 'common', 'common', 'blastball_tex'),
(40400, 'warrior', 'common', 'common', 'pointattack_tex'),
(40401, 'assassin', 'common', 'common', 'c12_dashattack'),
(40402, 'assassin', 'common', 'common', 'c12_dashattack'),
(40410, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40411, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40430, 'lancer', 'common', 'common', 'roar_tex'),
(40499, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40500, 'archer', 'common', 'common', 'througharrow_tex'),
(40500, 'assassin', 'common', 'common', 'c12_dashattack'),
(40500, 'berserker', 'common', 'common', 'bash_tex'),
(40500, 'engineer', 'common', 'common', 'gunbrandish_tex'),
(40500, 'fighter', 'common', 'common', 'poundonground_tex'),
(40500, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40500, 'lancer', 'common', 'common', 'roar_tex'),
(40500, 'sorcerer', 'common', 'common', 'blastball_tex'),
(40500, 'warrior', 'common', 'common', 'pointattack_tex'),
(40501, 'assassin', 'common', 'common', 'c12_dashattack'),
(40502, 'assassin', 'common', 'common', 'c12_dashattack'),
(40510, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40511, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40530, 'lancer', 'common', 'common', 'roar_tex'),
(40599, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40600, 'archer', 'common', 'common', 'througharrow_tex'),
(40600, 'assassin', 'common', 'common', 'c12_dashattack'),
(40600, 'berserker', 'common', 'common', 'bash_tex'),
(40600, 'engineer', 'common', 'common', 'gunbrandish_tex'),
(40600, 'fighter', 'common', 'common', 'poundonground_tex'),
(40600, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40600, 'lancer', 'common', 'common', 'roar_tex'),
(40600, 'sorcerer', 'common', 'common', 'blastball_tex'),
(40600, 'warrior', 'common', 'common', 'pointattack_tex'),
(40601, 'assassin', 'common', 'common', 'c12_dashattack'),
(40602, 'assassin', 'common', 'common', 'c12_dashattack'),
(40610, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40611, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40630, 'lancer', 'common', 'common', 'roar_tex'),
(40699, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40700, 'archer', 'common', 'common', 'througharrow_tex'),
(40700, 'assassin', 'common', 'common', 'c12_dashattack'),
(40700, 'berserker', 'common', 'common', 'bash_tex'),
(40700, 'engineer', 'common', 'common', 'gunbrandish_tex'),
(40700, 'fighter', 'common', 'common', 'poundonground_tex'),
(40700, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40700, 'lancer', 'common', 'common', 'roar_tex'),
(40700, 'sorcerer', 'common', 'common', 'blastball_tex'),
(40700, 'warrior', 'common', 'common', 'pointattack_tex'),
(40701, 'assassin', 'common', 'common', 'c12_dashattack'),
(40702, 'assassin', 'common', 'common', 'c12_dashattack'),
(40710, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40711, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40730, 'lancer', 'common', 'common', 'roar_tex'),
(40799, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40800, 'archer', 'common', 'common', 'througharrow_tex'),
(40800, 'assassin', 'common', 'common', 'c12_dashattack'),
(40800, 'berserker', 'common', 'common', 'bash_tex'),
(40800, 'engineer', 'common', 'common', 'gunbrandish_tex'),
(40800, 'fighter', 'common', 'common', 'poundonground_tex'),
(40800, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40800, 'lancer', 'common', 'common', 'roar_tex'),
(40800, 'sorcerer', 'common', 'common', 'blastball_tex'),
(40800, 'warrior', 'common', 'common', 'pointattack_tex'),
(40801, 'assassin', 'common', 'common', 'c12_dashattack'),
(40802, 'assassin', 'common', 'common', 'c12_dashattack'),
(40810, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40811, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40830, 'lancer', 'common', 'common', 'roar_tex'),
(40899, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40900, 'archer', 'common', 'common', 'througharrow_tex'),
(40900, 'assassin', 'common', 'common', 'c12_dashattack'),
(40900, 'berserker', 'common', 'common', 'bash_tex'),
(40900, 'engineer', 'common', 'common', 'gunbrandish_tex'),
(40900, 'fighter', 'common', 'common', 'poundonground_tex'),
(40900, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40900, 'lancer', 'common', 'common', 'roar_tex'),
(40900, 'sorcerer', 'common', 'common', 'blastball_tex'),
(40900, 'warrior', 'common', 'common', 'pointattack_tex'),
(40901, 'assassin', 'common', 'common', 'c12_dashattack'),
(40902, 'assassin', 'common', 'common', 'c12_dashattack'),
(40910, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40911, 'glaiver', 'common', 'common', 'dashcut_tex'),
(40930, 'lancer', 'common', 'common', 'roar_tex'),
(40999, 'glaiver', 'common', 'common', 'dashcut_tex'),
(41000, 'archer', 'common', 'common', 'througharrow_tex'),
(41000, 'assassin', 'common', 'common', 'c12_dashattack'),
(41000, 'berserker', 'common', 'common', 'bash_tex'),
(41000, 'engineer', 'common', 'common', 'energiesofwillpower_tex'),
(41000, 'fighter', 'common', 'common', 'poundonground_tex'),
(41000, 'glaiver', 'common', 'common', 'dashcut_tex'),
(41000, 'sorcerer', 'common', 'common', 'blastball_tex'),
(41000, 'warrior', 'common', 'common', 'pointattack_tex'),
(41001, 'assassin', 'common', 'common', 'c12_dashattack'),
(41002, 'assassin', 'common', 'common', 'c12_dashattack'),
(41010, 'glaiver', 'common', 'common', 'dashcut_tex'),
(41011, 'glaiver', 'common', 'common', 'dashcut_tex'),
(41099, 'glaiver', 'common', 'common', 'dashcut_tex'),
(41100, 'archer', 'common', 'common', 'througharrow_tex'),
(41100, 'assassin', 'common', 'common', 'c12_dashattack'),
(41100, 'berserker', 'common', 'common', 'bash_tex'),
(41100, 'fighter', 'common', 'common', 'poundonground_tex'),
(41100, 'sorcerer', 'common', 'common', 'blastball_tex'),
(41100, 'warrior', 'common', 'common', 'pointattack_tex'),
(41101, 'assassin', 'common', 'common', 'c12_dashattack'),
(41102, 'assassin', 'common', 'common', 'c12_dashattack'),
(41200, 'archer', 'common', 'common', 'througharrow_tex'),
(41200, 'sorcerer', 'common', 'common', 'blastball_tex'),
(45100, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45110, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45200, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45210, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45300, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45310, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45400, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45410, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45500, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45510, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45600, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45610, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45700, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45710, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45800, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45810, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45900, 'glaiver', 'common', 'common', 'dashcut_tex'),
(45910, 'glaiver', 'common', 'common', 'dashcut_tex'),
(46000, 'glaiver', 'common', 'common', 'dashcut_tex'),
(46010, 'glaiver', 'common', 'common', 'dashcut_tex'),
(50100, 'archer', 'common', 'common', 'arrowfall_tex'),
(50100, 'assassin', 'common', 'common', 'c12_flamebomb'),
(50100, 'berserker', 'common', 'common', 'dash_tex'),
(50100, 'elementalist', 'common', 'common', 'healshot_tex'),
(50100, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(50100, 'fighter', 'common', 'common', 'bulldozer_tex'),
(50100, 'glaiver', 'common', 'common', 'twister_tex'),
(50100, 'lancer', 'common', 'common', 'shieldstrike_tex'),
(50100, 'priest', 'common', 'common', 'attackup_tex'),
(50100, 'slayer', 'common', 'common', 'dash_tex'),
(50100, 'sorcerer', 'common', 'common', 'mpcondensing_tex'),
(50100, 'soulless', 'common', 'common', 'chainsuperblow_tex'),
(50100, 'warrior', 'common', 'common', 'thunderingroar_tex'),
(50101, 'lancer', 'common', 'common', 'shieldstrike_tex'),
(50102, 'lancer', 'common', 'common', 'shieldstrike_tex'),
(50110, 'elementalist', 'common', 'common', 'healshot_tex'),
(50120, 'soulless', 'common', 'common', 'cuttingslash_tex'),
(50130, 'glaiver', 'common', 'common', 'twister_tex'),
(50130, 'lancer', 'common', 'common', 'shieldstrike_tex'),
(50130, 'soulless', 'common', 'common', 'chainsuperblow_tex'),
(50199, 'glaiver', 'common', 'common', 'twister_tex'),
(50200, 'archer', 'common', 'common', 'arrowfall_tex'),
(50200, 'assassin', 'common', 'common', 'c12_flamebomb'),
(50200, 'berserker', 'common', 'common', 'dash_tex'),
(50200, 'elementalist', 'common', 'common', 'healshot_tex'),
(50200, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(50200, 'fighter', 'common', 'common', 'bulldozer_tex'),
(50200, 'glaiver', 'common', 'common', 'twister_tex'),
(50200, 'priest', 'common', 'common', 'attackup_tex'),
(50200, 'slayer', 'common', 'common', 'dash_tex'),
(50200, 'sorcerer', 'common', 'common', 'mpcondensing_tex'),
(50200, 'soulless', 'common', 'common', 'chainsuperblow_tex'),
(50200, 'warrior', 'common', 'common', 'thunderingroar_tex'),
(50210, 'elementalist', 'common', 'common', 'healshot_tex'),
(50220, 'soulless', 'common', 'common', 'cuttingslash_tex'),
(50230, 'glaiver', 'common', 'common', 'twister_tex'),
(50230, 'soulless', 'common', 'common', 'chainsuperblow_tex'),
(50299, 'glaiver', 'common', 'common', 'twister_tex'),
(50300, 'archer', 'common', 'common', 'arrowfall_tex'),
(50300, 'assassin', 'common', 'common', 'c12_flamebomb'),
(50300, 'elementalist', 'common', 'common', 'healshot_tex'),
(50300, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(50300, 'fighter', 'common', 'common', 'bulldozer_tex'),
(50300, 'glaiver', 'common', 'common', 'twister_tex'),
(50300, 'priest', 'common', 'common', 'attackup_tex'),
(50300, 'slayer', 'common', 'common', 'dash_tex'),
(50300, 'soulless', 'common', 'common', 'chainsuperblow_tex'),
(50300, 'warrior', 'common', 'common', 'thunderingroar_tex'),
(50310, 'elementalist', 'common', 'common', 'healshot_tex'),
(50330, 'glaiver', 'common', 'common', 'twister_tex'),
(50330, 'soulless', 'common', 'common', 'chainsuperblow_tex'),
(50331, 'soulless', 'common', 'common', 'chainsuperblow_tex'),
(50332, 'soulless', 'common', 'common', 'chainsuperblow_tex'),
(50399, 'glaiver', 'common', 'common', 'twister_tex'),
(50400, 'archer', 'common', 'common', 'arrowfall_tex'),
(50400, 'assassin', 'common', 'common', 'c12_flamebomb'),
(50400, 'elementalist', 'common', 'common', 'healshot_tex'),
(50400, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(50400, 'fighter', 'common', 'common', 'bulldozer_tex'),
(50400, 'glaiver', 'common', 'common', 'twister_tex'),
(50400, 'warrior', 'common', 'common', 'thunderingroar_tex'),
(50410, 'elementalist', 'common', 'common', 'healshot_tex'),
(50430, 'glaiver', 'common', 'common', 'twister_tex'),
(50499, 'glaiver', 'common', 'common', 'twister_tex'),
(50500, 'archer', 'common', 'common', 'arrowfall_tex'),
(50500, 'assassin', 'common', 'common', 'c12_flamebomb'),
(50500, 'elementalist', 'common', 'common', 'healshot_tex'),
(50500, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(50500, 'fighter', 'common', 'common', 'bulldozer_tex'),
(50500, 'glaiver', 'common', 'common', 'twister_tex'),
(50500, 'warrior', 'common', 'common', 'thunderingroar_tex'),
(50510, 'elementalist', 'common', 'common', 'healshot_tex'),
(50530, 'glaiver', 'common', 'common', 'twister_tex'),
(50599, 'glaiver', 'common', 'common', 'twister_tex'),
(50600, 'archer', 'common', 'common', 'arrowfall_tex'),
(50600, 'assassin', 'common', 'common', 'c12_flamebomb'),
(50600, 'elementalist', 'common', 'common', 'healshot_tex'),
(50600, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(50600, 'fighter', 'common', 'common', 'bulldozer_tex'),
(50600, 'warrior', 'common', 'common', 'thunderingroar_tex'),
(50610, 'elementalist', 'common', 'common', 'healshot_tex'),
(50700, 'archer', 'common', 'common', 'arrowfall_tex'),
(50700, 'assassin', 'common', 'common', 'c12_flamebomb'),
(50700, 'elementalist', 'common', 'common', 'healshot_tex'),
(50700, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(50700, 'fighter', 'common', 'common', 'bulldozer_tex'),
(50700, 'warrior', 'common', 'common', 'thunderingroar_tex'),
(50710, 'elementalist', 'common', 'common', 'healshot_tex'),
(50800, 'archer', 'common', 'common', 'arrowfall_tex'),
(50800, 'assassin', 'common', 'common', 'c12_flamebomb'),
(50800, 'elementalist', 'common', 'common', 'healshot_tex'),
(50800, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(50800, 'fighter', 'common', 'common', 'bulldozer_tex'),
(50800, 'warrior', 'common', 'common', 'thunderingroar_tex'),
(50810, 'elementalist', 'common', 'common', 'healshot_tex'),
(50900, 'archer', 'common', 'common', 'arrowfall_tex'),
(50900, 'assassin', 'common', 'common', 'c12_flamebomb'),
(50900, 'elementalist', 'common', 'common', 'healshot_tex'),
(50900, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(50900, 'fighter', 'common', 'common', 'bulldozer_tex'),
(50900, 'warrior', 'common', 'common', 'thunderingroar_tex'),
(50910, 'elementalist', 'common', 'common', 'healshot_tex'),
(51000, 'archer', 'common', 'common', 'arrowfall_tex'),
(51000, 'elementalist', 'common', 'common', 'healshot_tex'),
(51000, 'engineer', 'common', 'common', 'gatlingshot_tex'),
(51010, 'elementalist', 'common', 'common', 'healshot_tex'),
(51020, 'engineer', 'common', 'common', 'gatlingshot_awaken_tex'),
(51021, 'engineer', 'common', 'common', 'gatlingshot_awaken_tex'),
(51031, 'engineer', 'common', 'common', 'gatlingshot_awaken_tex'),
(51032, 'engineer', 'common', 'common', 'gatlingshot_awaken_tex'),
(55100, 'glaiver', 'common', 'common', 'twister_tex'),
(55130, 'glaiver', 'common', 'common', 'twister_tex'),
(55200, 'glaiver', 'common', 'common', 'twister_tex'),
(55230, 'glaiver', 'common', 'common', 'twister_tex'),
(55300, 'glaiver', 'common', 'common', 'twister_tex'),
(55330, 'glaiver', 'common', 'common', 'twister_tex'),
(55400, 'glaiver', 'common', 'common', 'twister_tex'),
(55430, 'glaiver', 'common', 'common', 'twister_tex'),
(55500, 'glaiver', 'common', 'common', 'twister_tex'),
(55530, 'glaiver', 'common', 'common', 'twister_tex'),
(60100, 'archer', 'common', 'common', 'backstep_tex'),
(60100, 'assassin', 'common', 'common', 'c12_rapidslash'),
(60100, 'berserker', 'common', 'common', 'turnback_tex'),