dajian_fanji.json
62.6 KB
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
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
{
"skeleton": { "hash": "VkBL9r2M8ZKLQPiS9K9gQWE5F8I", "spine": "3.4.02", "width": 215.46, "height": 174.4 },
"bones": [
{ "name": "root", "scaleX": 0.63, "scaleY": 0.63 },
{ "name": "atkEffff", "parent": "root", "x": -363.74, "y": 201.74 },
{ "name": "atkEffff3", "parent": "root", "x": -363.74, "y": 201.74 },
{ "name": "body", "parent": "root", "length": 66.41, "rotation": 99.46, "x": 3.62, "y": 56.7 },
{ "name": "beijian", "parent": "body", "length": 64.31, "rotation": 156.61, "x": 137.82, "y": 43.65 },
{ "name": "pifdeng", "parent": "root", "length": 20.35, "rotation": -94.95, "x": -33.23, "y": 170.73 },
{ "name": "bone2", "parent": "pifdeng", "length": 27.68, "rotation": -4.05, "x": 20.35, "y": -0.01 },
{ "name": "bone3", "parent": "bone2", "length": 22.19, "rotation": 1.81, "x": 27.68, "y": -0.09 },
{ "name": "bone4", "parent": "bone3", "length": 23.34, "rotation": -3.6, "x": 22.19, "y": 0.12 },
{ "name": "bone5", "parent": "bone4", "length": 22.47, "rotation": -0.45, "x": 23.34, "y": -0.04 },
{ "name": "head", "parent": "root", "length": 63.06, "rotation": 81.42, "x": -3.29, "y": 144.61 },
{ "name": "diaosi", "parent": "head", "length": 13.34, "rotation": -59.62, "x": 51.87, "y": -26.32 },
{ "name": "bone6", "parent": "diaosi", "length": 9.35, "rotation": -51.27, "x": 13.34 },
{ "name": "bone17", "parent": "head", "length": 19.01, "rotation": -146.57, "x": 67.64, "y": -26.56 },
{ "name": "kouzhao", "parent": "head", "rotation": 10.09, "x": -2.66, "y": -18.12 },
{ "name": "leftFoot", "parent": "root", "x": 50.36, "y": 15.48 },
{ "name": "leftHand", "parent": "root", "rotation": 1.55, "x": 77.93, "y": 69.26 },
{ "name": "rightFoot", "parent": "root", "x": -59.88, "y": 13.52 },
{ "name": "rightHand", "parent": "root", "rotation": -0.46, "x": -70.86, "y": 55.49 },
{ "name": "weapon", "parent": "root", "length": 288.36, "rotation": -170.53, "x": 110.58, "y": 77.48 },
{ "name": "youjianjia", "parent": "body", "length": 31.05, "rotation": 101.93, "x": 84.78, "y": 30.68 },
{ "name": "zuojianjia", "parent": "body", "length": 23.07, "rotation": -121.88, "x": 75.5, "y": -30.03 }
],
"slots": [
{ "name": "images/djboss_0000_jian", "bone": "beijian", "attachment": "images/djboss_0000_jian" },
{ "name": "images/jian", "bone": "weapon" },
{ "name": "images/shou15-b", "bone": "leftHand", "attachment": "images/shou15-b" },
{ "name": "images/pifeng", "bone": "pifdeng", "attachment": "images/pifeng" },
{ "name": "images/jianjiaBack", "bone": "zuojianjia", "attachment": "images/jianjiaBack" },
{ "name": "images/zuojiao01", "bone": "leftFoot", "attachment": "images/zuojiao01" },
{ "name": "images/body04", "bone": "body", "attachment": "images/body03" },
{ "name": "images/tou04", "bone": "head", "attachment": "images/tou02" },
{ "name": "images/jianshitoufa04", "bone": "head", "attachment": "images/jianshitoufa04" },
{ "name": "images/kouzhao04", "bone": "kouzhao", "attachment": "images/kouzhao04" },
{ "name": "images/jianjia04", "bone": "youjianjia", "attachment": "images/jianjia04" },
{ "name": "images/youjiao01", "bone": "rightFoot", "attachment": "images/youjiao01" },
{ "name": "images/shou00-b", "bone": "rightHand", "attachment": "images/shou00-b" },
{ "name": "atkEffff1", "bone": "atkEffff", "color": "ff393dff" },
{ "name": "atkEffff4", "bone": "atkEffff3", "blend": "additive" },
{ "name": "atkEffff2", "bone": "atkEffff", "color": "ff7e68ff", "blend": "additive" },
{ "name": "atkEffff5", "bone": "atkEffff3", "blend": "additive" },
{ "name": "atkEffff3", "bone": "atkEffff", "color": "ff8376ff", "blend": "additive" },
{ "name": "atkEffff6", "bone": "atkEffff3", "blend": "additive" },
{ "name": "images/diaosi", "bone": "diaosi", "attachment": "images/diaosi" }
],
"skins": {
"default": {
"atkEffff1": {
"images/newatkEff/newtkdg10001": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10002": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10003": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10004": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10005": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10006": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 }
},
"atkEffff2": {
"images/newatkEff/newtkdg20001": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20002": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20003": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20004": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20005": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20006": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 }
},
"atkEffff3": {
"images/newatkEff/newtkdg30001": { "x": -17.41, "y": 93.35, "width": 204, "height": 314 },
"images/newatkEff/newtkdg30002": { "x": -17.41, "y": 93.35, "width": 204, "height": 314 },
"images/newatkEff/newtkdg30003": { "x": -17.41, "y": 93.35, "width": 204, "height": 314 },
"images/newatkEff/newtkdg30004": { "x": -17.41, "y": 93.35, "width": 204, "height": 314 }
},
"atkEffff4": {
"images/newatkEff/newtkdg10001": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10002": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10003": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10004": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10005": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 },
"images/newatkEff/newtkdg10006": { "x": 25.05, "y": -8.34, "width": 451, "height": 284 }
},
"atkEffff5": {
"images/newatkEff/newtkdg20001": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20002": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20003": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20004": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20005": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 },
"images/newatkEff/newtkdg20006": { "x": 14.58, "y": -0.64, "width": 314, "height": 360 }
},
"atkEffff6": {
"images/newatkEff/newtkdg30001": { "x": -17.41, "y": 93.35, "width": 204, "height": 314 },
"images/newatkEff/newtkdg30002": { "x": -17.41, "y": 93.35, "width": 204, "height": 314 },
"images/newatkEff/newtkdg30003": { "x": -17.41, "y": 93.35, "width": 204, "height": 314 },
"images/newatkEff/newtkdg30004": { "x": -17.41, "y": 93.35, "width": 204, "height": 314 }
},
"images/body04": {
"images/body01": { "x": 39.19, "y": 1.8, "rotation": -89.73, "width": 75, "height": 103 },
"images/body02": { "x": 37.34, "y": 4.04, "scaleX": 1.102, "rotation": -92.54, "width": 80, "height": 102 },
"images/body03": { "x": 35.3, "y": 4.23, "scaleX": 1.041, "rotation": -95.39, "width": 80, "height": 102 },
"images/body04": { "x": 33.35, "y": 5.45, "rotation": -95.39, "width": 75, "height": 102 },
"images/body05": { "x": 34.37, "y": 5.35, "rotation": -88.63, "width": 76, "height": 105 }
},
"images/diaosi": {
"images/diaosi": {
"type": "mesh",
"uvs": [ 0, 0.39525, 0.20137, 0.13806, 0.39648, 0, 0.64162, 0, 0.75168, 0.14465, 0.90177, 0.3359, 1, 0.57331, 1, 1, 0.83673, 1, 0.82672, 0.79093, 0.71666, 0.59309, 0.56657, 0.48758, 0.41149, 0.46779, 0.29642, 0.54033, 0.16134, 0.65904, 0, 0.88326 ],
"triangles": [ 15, 0, 14, 14, 0, 13, 12, 13, 1, 13, 0, 1, 1, 2, 12, 4, 12, 2, 7, 9, 6, 7, 8, 9, 9, 10, 6, 6, 10, 5, 10, 11, 5, 5, 11, 4, 11, 12, 4, 4, 2, 3 ],
"vertices": [ 1, 11, -2.33, 2.2, 1, 1, 11, 5.19, 5.28, 1, 2, 12, -5.79, 2.36999, 0.06768, 11, 11.57, 6, 0.93231, 2, 12, 0.39, 5.87, 0.84476, 11, 18.17, 3.36, 0.15523, 2, 12, 4.73999, 4.67, 0.99916, 11, 19.95, -0.77, 8.3E-4, 1, 12, 10.6, 3.15, 1, 1, 12, 15.65, 0, 1, 1, 12, 20.27, -8.16, 1, 1, 12, 16.14, -10.49, 1, 1, 12, 13.63, -6.63, 1, 2, 12, 8.71, -4.41, 0.99943, 11, 15.35, -9.55, 5.6E-4, 2, 12, 3.78, -4.53, 0.75615, 11, 12.17, -5.78, 0.24384, 2, 12, -0.34, -6.36, 0.07346, 11, 8.14999, -3.71, 0.92652, 1, 11, 4.46, -3.95, 1, 1, 11, -0.14, -4.92, 1, 1, 11, -6.31, -7.76, 1 ],
"hull": 16
}
},
"images/djboss_0000_jian": {
"images/djboss_0000_jian": { "x": 40.37, "y": 38.86, "rotation": 103.92, "width": 342, "height": 276 }
},
"images/jian": {
"images/djboss_0000_jian": { "x": 114.85, "y": -1.93, "rotation": 37.8, "width": 342, "height": 276 },
"images/djboss_0000_jian2": {
"type": "mesh",
"path": "images/djboss_0000_jian",
"uvs": [ 0, 0, 0, 0.1947, 0.12272, 0.54512, 0.36536, 0.7744, 0.608, 0.84578, 0.88555, 0.41534, 0.69353, 0.10602, 0.3287, 0 ],
"triangles": [ 1, 0, 7, 2, 1, 7, 6, 2, 7, 3, 6, 5, 3, 2, 6, 4, 3, 5 ],
"vertices": [ -121.82, 4.07, -88.88, -38.38, 3.55, -89.07, 107.9, -88.21, 185.55, -52.91, 187.73, 99.13, 83.51999, 126.33, -33, 72.98 ],
"hull": 8
},
"images/djboss_0000_jian3": {
"type": "mesh",
"path": "images/djboss_0000_jian",
"uvs": [ 0, 0, 0.0028, 0.46543, 0.27029, 0.699, 0.68746, 0.89134, 0.94248, 0.64919, 0.61817, 0.17863, 0.19822, 0 ],
"triangles": [ 1, 0, 6, 1, 6, 5, 2, 1, 5, 3, 2, 5, 4, 3, 5 ],
"vertices": [ -128.01, 0.48, -48.52, -100.43, 63.27, -95.29, 208.54, -49.79, 236.49, 56.47, 69.25, 91.1, -74.44, 42.03 ],
"hull": 7
}
},
"images/jianjia04": {
"images/jianjia01": { "x": 2.22, "y": 4.47, "rotation": 149.42, "width": 78, "height": 113 },
"images/jianjia02": { "x": 15.86, "y": -1.85, "rotation": 155.09, "width": 97, "height": 124 },
"images/jianjia03": { "x": 15.86, "y": -1.85, "rotation": 155.09, "width": 96, "height": 119 },
"images/jianjia04": { "x": 15.86, "y": -1.85, "rotation": 155.09, "width": 78, "height": 113 },
"images/jianjia05": { "x": 26.05, "y": -5.4, "rotation": 173.92, "width": 94, "height": 116 }
},
"images/jianjiaBack": {
"images/jianjiaBack": { "x": 11.26, "y": 1.32, "scaleX": 0.899, "scaleY": 0.899, "rotation": 26.48, "width": 71, "height": 111 }
},
"images/jianshitoufa04": {
"images/jianshitoufa01": { "x": 58.6, "y": 18.87, "rotation": -81.42, "width": 100, "height": 128 },
"images/jianshitoufa02": { "x": 55.66, "y": 14.95, "rotation": -81.42, "width": 100, "height": 127 },
"images/jianshitoufa03": { "x": 59.58, "y": 16.17, "rotation": -81.42, "width": 103, "height": 129 },
"images/jianshitoufa04": { "x": 59.08, "y": 19.51, "rotation": -81.42, "width": 106, "height": 123 },
"images/jianshitoufa05": { "x": 56.46, "y": 17.98, "rotation": -81.42, "width": 103, "height": 118 }
},
"images/kouzhao04": {
"images/kouzhao01": { "x": 2.24, "y": 11.77, "rotation": -81.42, "width": 72, "height": 48 },
"images/kouzhao02": { "x": 2.24, "y": 11.77, "rotation": -81.42, "width": 70, "height": 48 },
"images/kouzhao03": { "x": 2.24, "y": 11.77, "rotation": -81.42, "width": 70, "height": 46 },
"images/kouzhao04": { "x": 2.24, "y": 11.77, "rotation": -81.42, "width": 70, "height": 44 },
"images/kouzhao05": { "x": 2.24, "y": 11.77, "rotation": -81.42, "width": 73, "height": 45 }
},
"images/pifeng": {
"images/pifeng": {
"type": "mesh",
"uvs": [ 0.14516, 0.10447, 0.24654, 0.10447, 0.34792, 0.10447, 0.4493, 0.10447, 0.55069, 0.10447, 0.65207, 0.10447, 0.75345, 0.10447, 0.85483, 0.10447, 0.85483, 0.21748, 0.85483, 0.33049, 0.85483, 0.44349, 0.85483, 0.5565, 0.85483, 0.6695, 0.85483, 0.78251, 0.85483, 0.89552, 0.75345, 0.89552, 0.65207, 0.89552, 0.55069, 0.89552, 0.4493, 0.89552, 0.34792, 0.89552, 0.24654, 0.89552, 0.14516, 0.89552, 0.14516, 0.78251, 0.14516, 0.6695, 0.14516, 0.5565, 0.14516, 0.44349, 0.14516, 0.33049, 0.14516, 0.21748, 0.24654, 0.21748, 0.24654, 0.33049, 0.24654, 0.44349, 0.24654, 0.5565, 0.24654, 0.6695, 0.24654, 0.78251, 0.34792, 0.21748, 0.34792, 0.33049, 0.34792, 0.44349, 0.34792, 0.5565, 0.34792, 0.6695, 0.34792, 0.78251, 0.4493, 0.21748, 0.4493, 0.33049, 0.4493, 0.44349, 0.4493, 0.5565, 0.4493, 0.6695, 0.4493, 0.78251, 0.55069, 0.21748, 0.55069, 0.33049, 0.55069, 0.44349, 0.55069, 0.5565, 0.55069, 0.6695, 0.55069, 0.78251, 0.65207, 0.21748, 0.65207, 0.33049, 0.65207, 0.44349, 0.65207, 0.5565, 0.65207, 0.6695, 0.65207, 0.78251, 0.75345, 0.21748, 0.75345, 0.33049, 0.75345, 0.44349, 0.75345, 0.5565, 0.75345, 0.6695, 0.75345, 0.78251 ],
"triangles": [ 23, 24, 31, 23, 31, 32, 22, 23, 32, 33, 32, 38, 22, 32, 33, 33, 38, 39, 39, 44, 45, 21, 22, 33, 20, 33, 39, 21, 33, 20, 19, 39, 45, 20, 39, 19, 18, 45, 51, 19, 45, 18, 18, 51, 17, 25, 26, 29, 25, 29, 30, 31, 24, 25, 37, 31, 30, 31, 25, 30, 37, 36, 42, 37, 30, 36, 37, 42, 43, 32, 31, 37, 38, 37, 43, 32, 37, 38, 44, 43, 49, 38, 43, 44, 44, 49, 50, 50, 55, 56, 39, 38, 44, 45, 44, 50, 51, 50, 56, 45, 50, 51, 57, 56, 62, 51, 56, 57, 63, 62, 12, 57, 62, 63, 63, 12, 13, 17, 51, 57, 16, 57, 63, 17, 57, 16, 15, 63, 13, 16, 63, 15, 15, 13, 14, 26, 27, 28, 29, 28, 34, 26, 28, 29, 29, 34, 35, 30, 29, 35, 36, 35, 41, 30, 35, 36, 42, 41, 47, 36, 41, 42, 42, 47, 48, 43, 42, 48, 49, 48, 54, 43, 48, 49, 49, 54, 55, 50, 49, 55, 56, 55, 61, 62, 61, 11, 56, 61, 62, 62, 11, 12, 27, 0, 1, 28, 1, 2, 27, 1, 28, 34, 2, 3, 28, 2, 34, 46, 40, 3, 34, 3, 40, 46, 3, 4, 35, 34, 40, 47, 41, 40, 35, 40, 41, 47, 46, 52, 47, 40, 46, 53, 52, 58, 47, 52, 53, 53, 58, 59, 59, 8, 9, 48, 47, 53, 54, 53, 59, 48, 53, 54, 60, 59, 9, 54, 59, 60, 60, 9, 10, 55, 54, 60, 61, 60, 10, 55, 60, 61, 61, 10, 11, 46, 4, 5, 52, 5, 6, 46, 5, 52, 58, 6, 7, 52, 6, 58, 58, 7, 8, 59, 58, 8 ],
"vertices": [ 4, 5, 38.54, -79.94999, 0.01778, 6, 23.78, -78.44999, 0.39548, 7, -6.36, -78.19999, 0.37352, 8, -23.58, -79.97, 0.2132, 4, 5, 32.38, -68.99, 0.03145, 6, 16.86, -67.96, 0.41655, 7, -12.94, -67.49, 0.35879, 8, -30.82, -69.69999, 0.19319, 4, 5, 26.22, -58.03, 0.0791, 6, 9.93999, -57.46, 0.47013, 7, -19.53, -56.78, 0.3084, 8, -38.07, -59.42, 0.14233, 4, 5, 20.06, -47.07, 0.18499, 6, 3.02, -46.96, 0.52281, 7, -26.12, -46.07, 0.2133, 8, -45.32, -49.15, 0.07887, 4, 5, 13.89, -36.12, 0.39449, 6, -3.89, -36.47, 0.4798, 7, -32.7, -35.37, 0.09689, 8, -52.56, -38.88, 0.02881, 4, 5, 7.73, -25.16, 0.74369, 6, -10.81, -25.97, 0.23342, 7, -39.29, -24.66, 0.01808, 8, -59.81, -28.6, 0.0048, 2, 5, 1.57, -14.2, 0.99264, 6, -17.73, -15.48, 0.00735, 1, 5, -4.58, -3.24, 1, 2, 5, 8.60999, 4.17, 0.89277, 6, -12, 3.34, 0.10722, 4, 5, 21.81, 11.59, 0.34654, 6, 0.63, 11.68, 0.62786, 7, -26.66, 12.61, 0.02498, 8, -49.55, 9.39, 6.0E-4, 4, 5, 35, 19.01, 0.04958, 6, 13.27, 20.01, 0.72019, 7, -13.76, 20.54999, 0.19893, 8, -37.18, 18.12, 0.03128, 5, 5, 48.2, 26.44, 0.00105, 6, 25.92, 28.35, 0.46052, 7, -0.87, 28.48, 0.3868, 8, -24.8, 26.85, 0.15014, 9, -48.35, 26.52, 0.00148, 4, 6, 38.56, 36.68, 0.23324, 7, 12.02, 36.41, 0.41218, 8, -12.43, 35.57, 0.33527, 9, -36.04, 35.34, 0.01929, 4, 6, 51.2, 45.02, 0.11012, 7, 24.92, 44.35, 0.35603, 8, -0.05, 44.3, 0.47861, 9, -23.73, 44.17, 0.05522, 4, 6, 63.84, 53.35, 0.07305, 7, 37.82, 52.28, 0.32446, 8, 12.31, 53.03, 0.52723, 9, -11.42, 52.99, 0.07523, 4, 6, 70.76, 42.86, 0.05979, 7, 44.41, 41.57, 0.29469, 8, 19.56, 42.76, 0.5406, 9, -4.1, 42.77, 0.1049, 4, 6, 77.68, 32.36, 0.0324, 7, 50.99, 30.86, 0.2135, 8, 26.8, 32.48, 0.55238, 9, 3.21, 32.55, 0.20169, 4, 6, 84.6, 21.86, 0.00879, 7, 57.58, 20.15, 0.10368, 8, 34.05, 22.21, 0.4857, 9, 10.54, 22.34, 0.40181, 4, 6, 91.52, 11.37, 5.0E-5, 7, 64.16, 9.45, 0.02377, 8, 41.3, 11.94, 0.26371, 9, 17.86, 12.12, 0.71245, 3, 7, 70.75, -1.25, 5.3E-4, 8, 48.54, 1.66, 0.03303, 9, 25.19, 1.9, 0.96641, 1, 9, 32.50999, -8.31, 1, 1, 9, 39.84, -18.52, 1, 2, 8, 50.66, -27.6, 0.04347, 9, 27.53, -27.35, 0.95652, 4, 6, 86.99, -36.78, 0.00339, 7, 58.12, -38.53, 0.02546, 8, 38.28, -36.33, 0.26733, 9, 15.22, -36.16999, 0.70379, 4, 6, 74.35, -45.11, 0.03511, 7, 45.23, -46.47, 0.13186, 8, 25.91, -45.06, 0.48634, 9, 2.92, -44.99, 0.34667, 4, 6, 61.71, -53.45, 0.12296, 7, 32.33, -54.4, 0.28148, 8, 13.54, -53.78, 0.46357, 9, -9.38, -53.81, 0.13197, 5, 5, 64.94, -65.1, 0.00247, 6, 49.07, -61.78, 0.24925, 7, 19.43, -62.33, 0.36758, 8, 1.16, -62.51, 0.34343, 9, -21.69, -62.64, 0.03723, 5, 5, 51.74, -72.51999, 0.01191, 6, 36.41999, -70.12, 0.35613, 7, 6.53, -70.26999, 0.37897, 8, -11.2, -71.24, 0.24698, 9, -34, -71.46, 0.00599, 5, 5, 45.58, -61.57, 0.01377, 6, 29.5, -59.62, 0.35439, 7, -0.05, -59.56, 0.37842, 8, -18.45, -60.97, 0.24654, 9, -41.32, -61.24, 0.00685, 5, 5, 58.78, -54.14, 0.0071, 6, 42.15, -51.29, 0.2702, 7, 12.84, -51.63, 0.39389, 8, -6.07, -52.24, 0.30417, 9, -29.01, -52.42, 0.02461, 5, 5, 71.98, -46.72, 1.9E-4, 6, 54.79, -42.95, 0.14015, 7, 25.74, -43.69, 0.33018, 8, 6.29, -43.51, 0.44309, 9, -16.70999, -43.6, 0.08635, 4, 6, 67.43, -34.62, 0.02526, 7, 38.64, -35.75999, 0.11512, 8, 18.66, -34.78, 0.53499, 9, -4.4, -34.77, 0.32461, 4, 6, 80.07, -26.28, 0.00195, 7, 51.54, -27.83, 0.01757, 8, 31.04, -26.06, 0.36481, 9, 7.9, -25.95, 0.61564, 1, 9, 20.20999, -17.12999, 1, 5, 5, 39.41999, -50.61, 0.06037, 6, 22.58, -49.13, 0.45285, 7, -6.63, -48.85, 0.33286, 8, -25.69, -50.69, 0.15324, 9, -48.65, -51.02, 6.5E-4, 5, 5, 52.62, -43.19, 0.01351, 6, 35.23, -40.79, 0.31, 7, 6.26, -40.91999, 0.41018, 8, -13.32, -41.97, 0.25295, 9, -36.34, -42.2, 0.01333, 5, 5, 65.82, -35.75999, 2.9E-4, 6, 47.87, -32.46, 0.11941, 7, 19.15, -32.98, 0.43369, 8, -0.95, -33.24, 0.40985, 9, -24.03, -33.38, 0.03673, 4, 6, 60.51, -24.12, 0.01307, 7, 32.05, -25.05, 0.165, 8, 11.42, -24.51, 0.76519, 9, -11.72, -24.56, 0.05673, 2, 8, 23.79, -15.78, 0.53265, 9, 0.57, -15.73, 0.46734, 2, 8, 36.16999, -7.05, 0.00756, 9, 12.88, -6.91, 0.99243, 4, 5, 33.25999, -39.65, 0.11845, 6, 15.66, -38.63, 0.54136, 7, -13.22, -38.14, 0.25547, 8, -32.93999, -40.41999, 0.0847, 5, 5, 46.45, -32.23, 0.03262, 6, 28.31, -30.29, 0.44832, 7, -0.32, -30.21, 0.39316, 8, -20.57, -31.69, 0.12477, 9, -43.66, -31.98, 0.0011, 4, 6, 40.95, -21.96, 0.10168, 7, 12.57, -22.28, 0.66028, 8, -8.18999, -22.97, 0.23419, 9, -31.36, -23.16, 0.00384, 3, 6, 53.59, -13.63, 0.00209, 7, 25.47, -14.34, 0.43669, 8, 4.17, -14.24, 0.5612, 1, 8, 16.54999, -5.51, 1, 4, 6, 78.87999, 3.03, 9.0E-5, 7, 51.26, 1.51, 0.02026, 8, 28.92, 3.21, 0.45203, 9, 5.56, 3.3, 0.52758, 4, 5, 27.09, -28.69, 0.22092, 6, 8.74, -28.13, 0.58795, 7, -19.79999, -27.43, 0.14979, 8, -40.18999, -30.15, 0.04132, 4, 5, 40.29, -21.27, 0.05944, 6, 21.39, -19.79999, 0.70755, 7, -6.91, -19.5, 0.20658, 8, -27.81, -21.42, 0.0264, 2, 6, 34.03, -11.46, 0.15893, 7, 5.98, -11.57, 0.84106, 3, 6, 46.67, -3.13, 0.03291, 7, 18.87999, -3.63, 0.76978, 8, -3.06, -3.96, 0.19729, 4, 6, 59.32, 5.19999, 0.01892, 7, 31.78, 4.29, 0.20312, 8, 9.3, 4.75, 0.70226, 9, -14.07, 4.69, 0.07566, 4, 6, 71.96, 13.53, 0.00771, 7, 44.68, 12.22, 0.09011, 8, 21.68, 13.48, 0.5495, 9, -1.76, 13.51, 0.35266, 4, 5, 20.93, -17.74, 0.53687, 6, 1.83, -17.64, 0.45765, 7, -26.39, -16.73, 0.00374, 8, -47.43, -19.87999, 0.00172, 1, 6, 14.47, -9.3, 1, 2, 6, 27.11, -0.97, 0.67493, 7, -0.58999, -0.86, 0.32506, 4, 6, 39.75, 7.36, 0.19831, 7, 12.3, 7.06, 0.61488, 8, -10.31, 6.3, 0.18612, 9, -33.7, 6.09, 6.6E-4, 4, 6, 52.4, 15.69, 0.06432, 7, 25.19, 15, 0.33355, 8, 2.06, 15.03, 0.53487, 9, -21.39, 14.91, 0.06724, 4, 6, 65.04, 24.03, 0.04474, 7, 38.09, 22.93, 0.24478, 8, 14.43, 23.75, 0.55406, 9, -9.08, 23.73, 0.15639, 2, 5, 14.77, -6.78, 0.82817, 6, -5.08, -7.14, 0.17182, 3, 5, 27.97, 0.63, 0.15387, 6, 7.55, 1.17999, 0.83446, 7, -20.08, 1.91, 0.01165, 4, 5, 41.16999, 8.06, 0.0112, 6, 20.19, 9.52, 0.70471, 7, -7.18, 9.84, 0.2597, 8, -29.93, 7.84, 0.02437, 5, 5, 54.37, 15.48, 1.6E-4, 6, 32.83, 17.85, 0.4292, 7, 5.71, 17.77, 0.42451, 8, -17.54999, 16.57, 0.14465, 9, -41.02, 16.29999, 0.00144, 4, 6, 45.48, 26.19, 0.14428, 7, 18.61, 25.7, 0.38968, 8, -5.17999, 25.3, 0.42458, 9, -28.71, 25.13, 0.04144, 4, 6, 58.12, 34.52, 0.07847, 7, 31.51, 33.64, 0.31492, 8, 7.18, 34.03, 0.5154, 9, -16.41, 33.95, 0.09119 ],
"hull": 28
}
},
"images/shou00-b": {
"images/shou00-b": { "x": 2.56, "y": 1.14, "rotation": 9.22, "width": 47, "height": 55 },
"images/shou01-b": { "rotation": -82.22, "width": 59, "height": 49 },
"images/shou02-b": { "rotation": -104.01, "width": 60, "height": 48 },
"images/shou03-b": { "rotation": -6.95, "width": 47, "height": 55 },
"images/shou04-b": { "rotation": -67.07, "width": 59, "height": 53 },
"images/shou05-b": { "rotation": -121, "width": 72, "height": 71 },
"images/shou06-b": { "rotation": -110.01, "width": 65, "height": 56 },
"images/shou07-b": { "rotation": 58.95, "width": 59, "height": 61 },
"images/shou08-b": { "rotation": -6.95, "width": 58, "height": 64 },
"images/shou09-b": { "rotation": 93.63, "width": 59, "height": 44 },
"images/shou10-b": { "rotation": -118.71, "width": 57, "height": 56 },
"images/shou11-b": { "rotation": -79.24, "width": 62, "height": 46 },
"images/shou12-b": { "rotation": -12.08, "width": 51, "height": 67 },
"images/shou13-b": { "rotation": 107.5, "width": 78, "height": 42 },
"images/shou14-b": { "rotation": -107.16, "width": 69, "height": 53 }
},
"images/shou15-b": {
"images/shou04-b": { "x": 2.19, "y": 3.37, "rotation": -37.05, "width": 59, "height": 53 },
"images/shou05-b": { "x": 0.9, "y": 5.95, "rotation": -97.92, "width": 72, "height": 71 },
"images/shou06-b": { "x": -0.37, "y": -1.76, "rotation": -88.26, "width": 65, "height": 56 },
"images/shou07-b": { "x": -4.23, "y": -1.76, "rotation": -67.61, "width": 59, "height": 61 },
"images/shou15-b": { "x": -1.24, "y": 3.37, "rotation": 0.78, "width": 45, "height": 50 }
},
"images/tou04": {
"images/tou01": { "x": 27.55, "y": 4.11, "rotation": -81.42, "width": 82, "height": 82 },
"images/tou02": { "x": 27.55, "y": 4.11, "rotation": -81.42, "width": 81, "height": 80 },
"images/tou03": { "x": 27.55, "y": 4.11, "rotation": -81.42, "width": 80, "height": 80 },
"images/tou04": { "x": 27.55, "y": 4.11, "rotation": -81.42, "width": 80, "height": 81 },
"images/tou05": { "x": 27.55, "y": 4.11, "rotation": -81.42, "width": 80, "height": 80 }
},
"images/youjiao01": {
"images/jiao01": { "x": 0.37, "y": 2.07, "scaleX": -1, "width": 51, "height": 46 },
"images/jiao02": { "x": 0.37, "y": 2.07, "scaleX": -1, "width": 44, "height": 44 },
"images/jiao03": { "x": 0.37, "y": 2.07, "scaleX": -1, "rotation": -57.69, "width": 45, "height": 49 },
"images/youjiao01": { "x": 0.37, "y": 2.07, "width": 54, "height": 35 },
"images/zuojiao01": { "x": -4.17, "y": 3.69, "scaleX": -1, "rotation": -1.18, "width": 53, "height": 32 }
},
"images/zuojiao01": {
"images/jiao01": { "x": 4.24, "y": 2.27, "rotation": -25.85, "width": 51, "height": 46 },
"images/jiao02": { "x": 4.24, "y": 3.35, "rotation": -0.37, "width": 44, "height": 44 },
"images/jiao03": { "x": 4.24, "y": 0.11, "rotation": 56.65, "width": 45, "height": 49 },
"images/youjiao01": { "x": 0.11, "y": 0.11, "scaleX": -1, "width": 54, "height": 35 },
"images/zuojiao01": { "x": 4.24, "y": 0.11, "width": 53, "height": 32 }
}
}
},
"events": {
"special": {}
},
"animations": {
"special": {
"slots": {
"atkEffff1": {
"attachment": [
{ "time": 0.3, "name": "images/newatkEff/newtkdg10001" },
{ "time": 0.3333, "name": "images/newatkEff/newtkdg10002" },
{ "time": 0.3666, "name": "images/newatkEff/newtkdg10003" },
{ "time": 0.4333, "name": "images/newatkEff/newtkdg10004" },
{ "time": 0.4666, "name": "images/newatkEff/newtkdg10005" },
{ "time": 0.5, "name": "images/newatkEff/newtkdg10006" },
{ "time": 0.5333, "name": null }
]
},
"atkEffff4": {
"color": [
{ "time": 0.3333, "color": "ff5137ff" }
],
"attachment": [
{ "time": 0.3333, "name": "images/newatkEff/newtkdg10001" },
{ "time": 0.3666, "name": "images/newatkEff/newtkdg10002" },
{ "time": 0.4, "name": "images/newatkEff/newtkdg10003" },
{ "time": 0.4666, "name": "images/newatkEff/newtkdg10004" },
{ "time": 0.5, "name": "images/newatkEff/newtkdg10005" },
{ "time": 0.5333, "name": "images/newatkEff/newtkdg10006" },
{ "time": 0.5666, "name": null }
]
},
"images/body04": {
"color": [
{ "time": 0, "color": "ff9a9f83" },
{ "time": 1, "color": "ff9a9f00" }
],
"attachment": [
{ "time": 0, "name": "images/body04" },
{ "time": 0.0333, "name": "images/body03" },
{ "time": 0.1, "name": "images/body02" },
{ "time": 0.1333, "name": "images/body01" },
{ "time": 0.2333, "name": "images/body01" },
{ "time": 0.2666, "name": "images/body01" },
{ "time": 0.3, "name": "images/body02" },
{ "time": 0.3333, "name": "images/body03" },
{ "time": 0.3666, "name": "images/body03" },
{ "time": 0.5333, "name": "images/body03" },
{ "time": 1, "name": "images/body04" }
]
},
"images/diaosi": {
"color": [
{ "time": 0, "color": "ff8aa57f" },
{ "time": 1, "color": "ff8aa500" }
]
},
"images/djboss_0000_jian": {
"color": [
{ "time": 0, "color": "ff769380" },
{ "time": 1, "color": "ff769300" }
],
"attachment": [
{ "time": 0, "name": "images/djboss_0000_jian" },
{ "time": 0.2666, "name": null },
{ "time": 1, "name": null }
]
},
"images/jian": {
"color": [
{ "time": 0.2666, "color": "ff7f7a7b" },
{ "time": 1, "color": "ff7f7a00" }
],
"attachment": [
{ "time": 0.2666, "name": "images/djboss_0000_jian" }
]
},
"images/jianjia04": {
"color": [
{ "time": 0, "color": "c470747f" },
{ "time": 1, "color": "c4707400" }
],
"attachment": [
{ "time": 0, "name": "images/jianjia04" },
{ "time": 0.1, "name": "images/jianjia02" },
{ "time": 0.1333, "name": "images/jianjia01" },
{ "time": 0.2333, "name": "images/jianjia01" },
{ "time": 0.2666, "name": "images/jianjia02" },
{ "time": 0.3, "name": "images/jianjia02" },
{ "time": 0.3333, "name": "images/jianjia04" },
{ "time": 0.3666, "name": "images/jianjia04" },
{ "time": 0.5333, "name": "images/jianjia04" },
{ "time": 1, "name": "images/jianjia04" }
]
},
"images/jianjiaBack": {
"color": [
{ "time": 0, "color": "ff99a285" },
{ "time": 1, "color": "ff99a200" }
],
"attachment": [
{ "time": 0.1333, "name": "images/jianjiaBack" },
{ "time": 0.2333, "name": "images/jianjiaBack" },
{ "time": 0.2666, "name": "images/jianjiaBack" },
{ "time": 0.3, "name": "images/jianjiaBack" },
{ "time": 0.3333, "name": "images/jianjiaBack" },
{ "time": 0.3666, "name": "images/jianjiaBack" },
{ "time": 0.5333, "name": "images/jianjiaBack" }
]
},
"images/jianshitoufa04": {
"color": [
{ "time": 0, "color": "d6747a82" },
{ "time": 1, "color": "d6747a00" }
],
"attachment": [
{ "time": 0, "name": "images/jianshitoufa04" },
{ "time": 0.1, "name": "images/jianshitoufa02" },
{ "time": 0.1333, "name": "images/jianshitoufa01" },
{ "time": 0.2333, "name": "images/jianshitoufa01" },
{ "time": 0.2666, "name": "images/jianshitoufa01" },
{ "time": 0.3, "name": "images/jianshitoufa02" },
{ "time": 0.3333, "name": "images/jianshitoufa04" },
{ "time": 0.3666, "name": "images/jianshitoufa04" },
{ "time": 0.5333, "name": "images/jianshitoufa04" },
{ "time": 1, "name": "images/jianshitoufa04" }
]
},
"images/kouzhao04": {
"color": [
{ "time": 0, "color": "ffffff7e" },
{ "time": 1, "color": "ffffff00" }
],
"attachment": [
{ "time": 0, "name": "images/kouzhao04" },
{ "time": 0.1, "name": "images/kouzhao02" },
{ "time": 0.1333, "name": "images/kouzhao05" },
{ "time": 0.2333, "name": "images/kouzhao05" },
{ "time": 0.2666, "name": "images/kouzhao01" },
{ "time": 0.3, "name": "images/kouzhao01" },
{ "time": 0.3333, "name": "images/kouzhao04" },
{ "time": 0.3666, "name": "images/kouzhao04" },
{ "time": 0.5333, "name": "images/kouzhao04" },
{ "time": 1, "name": "images/kouzhao04" }
]
},
"images/pifeng": {
"color": [
{ "time": 0, "color": "ff8e9582" },
{ "time": 1, "color": "ff8e9500" }
],
"attachment": [
{ "time": 0.1333, "name": "images/pifeng" },
{ "time": 0.2333, "name": "images/pifeng" },
{ "time": 0.2666, "name": "images/pifeng" },
{ "time": 0.3, "name": "images/pifeng" },
{ "time": 0.3333, "name": "images/pifeng" },
{ "time": 0.3666, "name": "images/pifeng" },
{ "time": 0.5333, "name": "images/pifeng" }
]
},
"images/shou00-b": {
"color": [
{ "time": 0, "color": "ff796c81" },
{ "time": 1, "color": "ff796c00" }
],
"attachment": [
{ "time": 0, "name": "images/shou00-b" },
{ "time": 0.1, "name": "images/shou12-b" },
{ "time": 0.1333, "name": "images/shou00-b" },
{ "time": 0.2333, "name": "images/shou00-b" },
{ "time": 0.2666, "name": "images/shou00-b" },
{ "time": 0.3, "name": "images/shou00-b" },
{ "time": 0.3333, "name": "images/shou00-b" },
{ "time": 0.3666, "name": "images/shou00-b" },
{ "time": 0.5333, "name": "images/shou00-b" },
{ "time": 1, "name": "images/shou00-b" }
]
},
"images/shou15-b": {
"color": [
{ "time": 0, "color": "ffa4a587" },
{ "time": 1, "color": "ffa4a500" }
],
"attachment": [
{ "time": 0.1333, "name": "images/shou15-b" },
{ "time": 0.2333, "name": "images/shou15-b" },
{ "time": 0.2666, "name": "images/shou15-b" },
{ "time": 0.3, "name": "images/shou15-b" },
{ "time": 0.3333, "name": "images/shou15-b" },
{ "time": 0.3666, "name": "images/shou15-b" },
{ "time": 0.5333, "name": "images/shou15-b" }
]
},
"images/tou04": {
"color": [
{ "time": 0, "color": "ff949789" },
{ "time": 1, "color": "ff949700" }
],
"attachment": [
{ "time": 0, "name": "images/tou02" },
{ "time": 0.1, "name": "images/tou02" },
{ "time": 0.1333, "name": "images/tou02" },
{ "time": 0.2333, "name": "images/tou02" },
{ "time": 0.2666, "name": "images/tou02" },
{ "time": 0.3, "name": "images/tou02" },
{ "time": 0.3333, "name": "images/tou02" },
{ "time": 0.3666, "name": "images/tou02" },
{ "time": 0.5333, "name": "images/tou02" },
{ "time": 1, "name": "images/tou02" }
]
},
"images/youjiao01": {
"color": [
{ "time": 0, "color": "ff746c85" },
{ "time": 1, "color": "ff746c00" }
],
"attachment": [
{ "time": 0.1, "name": "images/youjiao01" },
{ "time": 0.1333, "name": "images/youjiao01" },
{ "time": 0.2666, "name": "images/youjiao01" },
{ "time": 0.3, "name": "images/youjiao01" },
{ "time": 0.3333, "name": "images/youjiao01" },
{ "time": 0.3666, "name": "images/youjiao01" },
{ "time": 0.5333, "name": "images/youjiao01" }
]
},
"images/zuojiao01": {
"color": [
{ "time": 0, "color": "ff908d88" },
{ "time": 1, "color": "ff908d00" }
]
}
},
"bones": {
"root": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.1333, "angle": 0, "curve": "stepped" },
{ "time": 0.2333, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.5333, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"body": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -24.9, "curve": "stepped" },
{ "time": 0.1333, "angle": -23.21 },
{ "time": 0.2333, "angle": -23.05 },
{ "time": 0.2666, "angle": -11.6 },
{ "time": 0.3, "angle": -14.41 },
{ "time": 0.3333, "angle": -17.36, "curve": "stepped" },
{ "time": 0.3666, "angle": -17.36 },
{ "time": 0.5333, "angle": -14.26, "curve": "stepped" },
{ "time": 0.5666, "angle": -14.26 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 6.92, "y": -22.86, "curve": "stepped" },
{ "time": 0.1333, "x": 10.6, "y": -27.53 },
{ "time": 0.2333, "x": 31.3, "y": -23.85 },
{ "time": 0.2666, "x": 15.87, "y": -6.37 },
{ "time": 0.3, "x": 1.11, "y": 4.75 },
{ "time": 0.3333, "x": -4.31, "y": 0.27 },
{ "time": 0.3666, "x": -12.46, "y": -8.64 },
{ "time": 0.5333, "x": -14.67, "y": -8.64, "curve": "stepped" },
{ "time": 0.5666, "x": -14.67, "y": -8.64 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1, "x": 1, "y": 1.054, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": -1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": -1 },
{ "time": 0.2666, "x": 1, "y": 1.054, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1.054, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1.054, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1.054, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1.054, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1.054 },
{ "time": 1, "x": 1, "y": 1 }
]
},
"head": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -23.93, "curve": "stepped" },
{ "time": 0.1333, "angle": 29.54 },
{ "time": 0.2333, "angle": 14.11 },
{ "time": 0.2666, "angle": -34.78 },
{ "time": 0.3, "angle": -31.91 },
{ "time": 0.3333, "angle": -38.3, "curve": "stepped" },
{ "time": 0.3666, "angle": -38.3 },
{ "time": 0.5333, "angle": -34.28, "curve": "stepped" },
{ "time": 0.5666, "angle": -34.28 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 46.14, "y": -21.76, "curve": "stepped" },
{ "time": 0.1333, "x": 52.61, "y": -22.74 },
{ "time": 0.2333, "x": 69.24, "y": -24.35 },
{ "time": 0.2666, "x": 58.75, "y": -26.49 },
{ "time": 0.3, "x": 43.41, "y": -14.54 },
{ "time": 0.3333, "x": 22.24, "y": -20.7 },
{ "time": 0.3666, "x": 14.1, "y": -29.62 },
{ "time": 0.5333, "x": 12.27, "y": -29.62, "curve": "stepped" },
{ "time": 0.5666, "x": 12.27, "y": -29.62 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": -1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": -1 },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"leftFoot": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.0333, "angle": -19.78 },
{ "time": 0.1, "angle": 0 },
{ "time": 0.1333, "angle": 3.08, "curve": "stepped" },
{ "time": 0.2333, "angle": 3.08 },
{ "time": 0.2666, "angle": 2.03 },
{ "time": 0.3, "angle": -82.38 },
{ "time": 0.3333, "angle": -126.7 },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.5333, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.0333, "x": 14.91, "y": 8.98 },
{ "time": 0.1, "x": 26.22, "y": 0 },
{ "time": 0.1333, "x": 59.03, "y": -1.5 },
{ "time": 0.2333, "x": 23.79, "y": -1.5 },
{ "time": 0.2666, "x": -16.71, "y": 1.18 },
{ "time": 0.3, "x": -68.39, "y": 68.39 },
{ "time": 0.3333, "x": -42.66, "y": 45.18 },
{ "time": 0.3666, "x": 59.85, "y": 0, "curve": "stepped" },
{ "time": 0.5333, "x": 59.85, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 59.85, "y": 0 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"leftHand": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.1333, "angle": 0 },
{ "time": 0.2333, "angle": 6.13 },
{ "time": 0.2666, "angle": -171.16 },
{ "time": 0.3, "angle": 83.56 },
{ "time": 0.3333, "angle": -23.07 },
{ "time": 0.3666, "angle": 175.82, "curve": "stepped" },
{ "time": 0.5333, "angle": 175.82, "curve": "stepped" },
{ "time": 0.5666, "angle": 175.82 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -149.86, "y": -32.11, "curve": "stepped" },
{ "time": 0.1333, "x": -149.86, "y": -32.11 },
{ "time": 0.2333, "x": -126.02, "y": -2.9 },
{ "time": 0.2666, "x": -135.73, "y": 55.66 },
{ "time": 0.3, "x": 1.4, "y": 101.76 },
{ "time": 0.3333, "x": 57.12, "y": -10.87 },
{ "time": 0.3666, "x": -137.26, "y": -36.5, "curve": "stepped" },
{ "time": 0.5333, "x": -137.26, "y": -36.5, "curve": "stepped" },
{ "time": 0.5666, "x": -137.26, "y": -36.5 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"pifdeng": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -66.14, "curve": "stepped" },
{ "time": 0.1333, "angle": 48.79 },
{ "time": 0.2333, "angle": 68.3 },
{ "time": 0.2666, "angle": -49.97 },
{ "time": 0.3, "angle": -79.54 },
{ "time": 0.3333, "angle": 214.02, "curve": "stepped" },
{ "time": 0.3666, "angle": 214.02 },
{ "time": 0.5333, "angle": 209.39 },
{ "time": 0.5666, "angle": -150.6 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 37.66, "y": -20.22, "curve": "stepped" },
{ "time": 0.1333, "x": 89.69, "y": -36.07 },
{ "time": 0.2333, "x": 105.4, "y": -38.75 },
{ "time": 0.2666, "x": 32.56, "y": -14.92 },
{ "time": 0.3, "x": 24.22, "y": -4.51 },
{ "time": 0.3333, "x": 37.68, "y": -13.15 },
{ "time": 0.3666, "x": 39.26, "y": -17.68 },
{ "time": 0.5333, "x": 32.26, "y": -17.68 },
{ "time": 0.5666, "x": 30.7, "y": -17.68 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"rightFoot": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.1333, "angle": 0 },
{ "time": 0.2333, "angle": 16.82 },
{ "time": 0.2666, "angle": 28.84 },
{ "time": 0.3, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.5333, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -29.31, "y": 0 },
{ "time": 0.1333, "x": -46.57, "y": 0 },
{ "time": 0.2333, "x": -36.83, "y": 33.63 },
{ "time": 0.2666, "x": 9.41, "y": 33.63 },
{ "time": 0.3, "x": 46.61, "y": 0 },
{ "time": 0.3333, "x": 20.68, "y": 0 },
{ "time": 0.3666, "x": -102.2, "y": 0, "curve": "stepped" },
{ "time": 0.5333, "x": -102.2, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": -102.2, "y": 0 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"rightHand": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 82.14 },
{ "time": 0.1333, "angle": -161.27 },
{ "time": 0.2333, "angle": -166.74 },
{ "time": 0.2666, "angle": 97.22 },
{ "time": 0.3, "angle": 57.68 },
{ "time": 0.3333, "angle": -45.6 },
{ "time": 0.3666, "angle": -80.31 },
{ "time": 0.5333, "angle": -83.11, "curve": "stepped" },
{ "time": 0.5666, "angle": -83.11 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 175.67, "y": 44.55 },
{ "time": 0.1333, "x": 187.65, "y": 95.36 },
{ "time": 0.2333, "x": 213.28, "y": 100.36 },
{ "time": 0.2666, "x": 170.28, "y": 23.35 },
{ "time": 0.3, "x": 86.14, "y": 3.32 },
{ "time": 0.3333, "x": -15.87, "y": 47.68 },
{ "time": 0.3666, "x": -32.05, "y": 120.51 },
{ "time": 0.5333, "x": -37.61, "y": 125.6, "curve": "stepped" },
{ "time": 0.5666, "x": -37.61, "y": 125.6 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"weapon": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.1333, "angle": 0 },
{ "time": 0.2333, "angle": 6.13 },
{ "time": 0.2666, "angle": 20.47 },
{ "time": 0.3, "angle": 267 },
{ "time": 0.3333, "angle": 166.81 },
{ "time": 0.3666, "angle": 2.86, "curve": "stepped" },
{ "time": 0.5333, "angle": 2.86, "curve": "stepped" },
{ "time": 0.5666, "angle": 2.86 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -149.86, "y": -32.11, "curve": "stepped" },
{ "time": 0.1333, "x": -149.86, "y": -32.11 },
{ "time": 0.2333, "x": -126.02, "y": -2.9 },
{ "time": 0.2666, "x": -137.03, "y": 66.31 },
{ "time": 0.3, "x": -32.51, "y": 96.16 },
{ "time": 0.3333, "x": 2.21, "y": -11.71 },
{ "time": 0.3666, "x": -136.57, "y": -35.71, "curve": "stepped" },
{ "time": 0.5333, "x": -136.57, "y": -35.71, "curve": "stepped" },
{ "time": 0.5666, "x": -136.57, "y": -35.71 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1 },
{ "time": 0.3, "x": 0.289, "y": 1 },
{ "time": 0.3333, "x": 0.739, "y": 0.559 },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"bone17": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.0666, "angle": 0, "curve": "stepped" },
{ "time": 0.1333, "angle": 0, "curve": "stepped" },
{ "time": 0.2, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.4333, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.0666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.4333, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.0666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.4333, "x": 1, "y": 1 }
]
},
"bone2": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 25.31, "curve": "stepped" },
{ "time": 0.1333, "angle": -6.49, "curve": "stepped" },
{ "time": 0.2333, "angle": -6.49 },
{ "time": 0.2666, "angle": 27.74, "curve": "stepped" },
{ "time": 0.3, "angle": 27.74, "curve": "stepped" },
{ "time": 0.3333, "angle": 27.74, "curve": "stepped" },
{ "time": 0.3666, "angle": 27.74, "curve": "stepped" },
{ "time": 0.5333, "angle": 27.74, "curve": "stepped" },
{ "time": 0.5666, "angle": 27.74 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"kouzhao": {
"rotate": [
{ "time": 0, "angle": 0, "curve": "stepped" },
{ "time": 0.1, "angle": 0, "curve": "stepped" },
{ "time": 0.1333, "angle": 0, "curve": "stepped" },
{ "time": 0.2333, "angle": 0, "curve": "stepped" },
{ "time": 0.2666, "angle": 0, "curve": "stepped" },
{ "time": 0.3, "angle": 0, "curve": "stepped" },
{ "time": 0.3333, "angle": 0, "curve": "stepped" },
{ "time": 0.3666, "angle": 0, "curve": "stepped" },
{ "time": 0.5333, "angle": 0, "curve": "stepped" },
{ "time": 0.5666, "angle": 0, "curve": "stepped" },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1 },
{ "time": 0.1, "x": 1.099, "y": 1.12, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1 },
{ "time": 0.2666, "x": 1.099, "y": 1.12, "curve": "stepped" },
{ "time": 0.3, "x": 1.099, "y": 1.12, "curve": "stepped" },
{ "time": 0.3333, "x": 1.099, "y": 1.12, "curve": "stepped" },
{ "time": 0.3666, "x": 1.099, "y": 1.12, "curve": "stepped" },
{ "time": 0.5333, "x": 1.099, "y": 1.12, "curve": "stepped" },
{ "time": 0.5666, "x": 1.099, "y": 1.12 },
{ "time": 1, "x": 1, "y": 1 }
]
},
"youjianjia": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": -5.87, "curve": "stepped" },
{ "time": 0.1333, "angle": 1.94, "curve": "stepped" },
{ "time": 0.2333, "angle": 1.94 },
{ "time": 0.2666, "angle": -7.39, "curve": "stepped" },
{ "time": 0.3, "angle": -7.39, "curve": "stepped" },
{ "time": 0.3333, "angle": -7.39, "curve": "stepped" },
{ "time": 0.3666, "angle": -7.39, "curve": "stepped" },
{ "time": 0.5333, "angle": -7.39, "curve": "stepped" },
{ "time": 0.5666, "angle": -7.39 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": -4.48, "y": -39.57, "curve": "stepped" },
{ "time": 0.1333, "x": 1.81, "y": -80.03, "curve": "stepped" },
{ "time": 0.2333, "x": 1.81, "y": -80.03 },
{ "time": 0.2666, "x": 1.43, "y": -52.1 },
{ "time": 0.3, "x": -2.33, "y": -49.31 },
{ "time": 0.3333, "x": -7.45, "y": -11.94, "curve": "stepped" },
{ "time": 0.3666, "x": -7.45, "y": -11.94, "curve": "stepped" },
{ "time": 0.5333, "x": -7.45, "y": -11.94, "curve": "stepped" },
{ "time": 0.5666, "x": -7.45, "y": -11.94 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"zuojianjia": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 36.59, "curve": "stepped" },
{ "time": 0.1333, "angle": 12.38, "curve": "stepped" },
{ "time": 0.2333, "angle": 12.38 },
{ "time": 0.2666, "angle": -0.98, "curve": "stepped" },
{ "time": 0.3, "angle": -0.98 },
{ "time": 0.3333, "angle": 10.77, "curve": "stepped" },
{ "time": 0.3666, "angle": 10.77, "curve": "stepped" },
{ "time": 0.5333, "angle": 10.77, "curve": "stepped" },
{ "time": 0.5666, "angle": 10.77 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0 },
{ "time": 0.1, "x": 3.05, "y": 63.76, "curve": "stepped" },
{ "time": 0.1333, "x": 13.77, "y": 69.86, "curve": "stepped" },
{ "time": 0.2333, "x": 13.77, "y": 69.86 },
{ "time": 0.2666, "x": -7.01, "y": 43.92, "curve": "stepped" },
{ "time": 0.3, "x": -7.01, "y": 43.92 },
{ "time": 0.3333, "x": 6.41, "y": 10.64, "curve": "stepped" },
{ "time": 0.3666, "x": 6.41, "y": 10.64, "curve": "stepped" },
{ "time": 0.5333, "x": 6.41, "y": 10.64, "curve": "stepped" },
{ "time": 0.5666, "x": 6.41, "y": 10.64 },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1 },
{ "time": 0.2666, "x": -1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": -1, "y": 1 },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"bone3": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 21.35, "curve": "stepped" },
{ "time": 0.1333, "angle": -14.76 },
{ "time": 0.2333, "angle": 17.77 },
{ "time": 0.2666, "angle": 12.49 },
{ "time": 0.3, "angle": 2.61 },
{ "time": 0.3333, "angle": 17.95, "curve": "stepped" },
{ "time": 0.3666, "angle": 17.95 },
{ "time": 0.5333, "angle": 21.7, "curve": "stepped" },
{ "time": 0.5666, "angle": 21.7 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"bone4": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 30.6, "curve": "stepped" },
{ "time": 0.1333, "angle": -6.98 },
{ "time": 0.2333, "angle": 25.55 },
{ "time": 0.2666, "angle": 15.94 },
{ "time": 0.3, "angle": 6.07 },
{ "time": 0.3333, "angle": 21.4, "curve": "stepped" },
{ "time": 0.3666, "angle": 21.4 },
{ "time": 0.5333, "angle": 25.15, "curve": "stepped" },
{ "time": 0.5666, "angle": 25.15 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"bone5": {
"rotate": [
{ "time": 0, "angle": 0 },
{ "time": 0.1, "angle": 3.95, "curve": "stepped" },
{ "time": 0.1333, "angle": -20.69 },
{ "time": 0.2333, "angle": 11.84 },
{ "time": 0.2666, "angle": 6.79 },
{ "time": 0.3, "angle": -3.07 },
{ "time": 0.3333, "angle": 12.25, "curve": "stepped" },
{ "time": 0.3666, "angle": 12.25 },
{ "time": 0.5333, "angle": 16, "curve": "stepped" },
{ "time": 0.5666, "angle": 16 },
{ "time": 1, "angle": 0 }
],
"translate": [
{ "time": 0, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.1333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.2666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.3666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5333, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 0.5666, "x": 0, "y": 0, "curve": "stepped" },
{ "time": 1, "x": 0, "y": 0 }
],
"scale": [
{ "time": 0, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.1333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.2666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.3666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5333, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 0.5666, "x": 1, "y": 1, "curve": "stepped" },
{ "time": 1, "x": 1, "y": 1 }
]
},
"atkEffff": {
"rotate": [
{ "time": 0.5666, "angle": 0 }
],
"translate": [
{ "time": 0.3, "x": 387.81, "y": -95.43 },
{ "time": 0.3333, "x": 342.68, "y": -95.43, "curve": "stepped" },
{ "time": 0.5666, "x": 342.68, "y": -95.43 }
],
"scale": [
{ "time": 0.3, "x": 1.924, "y": 1.924, "curve": "stepped" },
{ "time": 0.5666, "x": 1.924, "y": 1.924 }
]
},
"atkEffff3": {
"rotate": [
{ "time": 0.5666, "angle": 0 }
],
"translate": [
{ "time": 0.3333, "x": 388.83, "y": -70.32 },
{ "time": 0.3666, "x": 355.73, "y": -95.33, "curve": "stepped" },
{ "time": 0.5666, "x": 355.73, "y": -95.33 }
],
"scale": [
{ "time": 0.3333, "x": 1.44, "y": 1.44 },
{ "time": 0.3666, "x": 1.915, "y": 1.915, "curve": "stepped" },
{ "time": 0.5666, "x": 1.915, "y": 1.915 }
]
}
},
"drawOrder": [
{
"time": 0.1,
"offsets": [
{ "slot": "images/jian", "offset": 10 },
{ "slot": "images/shou15-b", "offset": 10 },
{ "slot": "images/shou00-b", "offset": -7 }
]
},
{
"time": 0.1333,
"offsets": [
{ "slot": "images/djboss_0000_jian", "offset": 10 },
{ "slot": "images/jian", "offset": 10 },
{ "slot": "images/shou15-b", "offset": 10 },
{ "slot": "images/shou00-b", "offset": -8 }
]
},
{
"time": 0.2333,
"offsets": [
{ "slot": "images/djboss_0000_jian", "offset": 9 },
{ "slot": "images/jian", "offset": 10 },
{ "slot": "images/shou15-b", "offset": 10 },
{ "slot": "images/shou00-b", "offset": -8 }
]
},
{
"time": 0.2666,
"offsets": [
{ "slot": "images/jian", "offset": 10 },
{ "slot": "images/shou15-b", "offset": 10 }
]
},
{
"time": 0.3,
"offsets": [
{ "slot": "images/jian", "offset": 4 },
{ "slot": "images/shou15-b", "offset": 4 }
]
},
{
"time": 0.3333,
"offsets": [
{ "slot": "images/jian", "offset": 10 },
{ "slot": "images/shou15-b", "offset": 10 }
]
},
{
"time": 0.3666,
"offsets": [
{ "slot": "images/jian", "offset": 9 },
{ "slot": "images/shou15-b", "offset": 9 }
]
},
{
"time": 0.4,
"offsets": [
{ "slot": "images/jian", "offset": 10 },
{ "slot": "images/shou15-b", "offset": 10 }
]
},
{
"time": 0.5333,
"offsets": [
{ "slot": "images/jian", "offset": 9 },
{ "slot": "images/shou15-b", "offset": 9 }
]
}
],
"events": [
{ "time": 0.3333, "name": "special" }
]
}
}
}