silphscope 1.4.22 → 1.4.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +185 -83
- package/docs/node/renderAllBalls.md +0 -0
- package/docs/node/renderAllGraphics.md +0 -0
- package/docs/node/renderAllIcons.md +0 -0
- package/docs/node/renderAllMons.md +0 -0
- package/docs/node/renderAllMoves.md +0 -0
- package/docs/node/renderAllTrainers.md +0 -0
- package/docs/node/renderAllX-options.md +0 -0
- package/item-data/itemData.json +376 -1128
- package/main.js +149 -5
- package/mon-data/monData.json +440 -4373
- package/move-data/moveData.json +0 -609
- package/package.json +3 -2
- package/silphscope.d.ts +579 -502
- package/src/graphics/balls/render-ball-particle.js +48 -26
- package/src/graphics/balls/render-balls.js +45 -22
- package/src/graphics/graphics-extractor-main.js +155 -294
- package/src/graphics/icons/render-icons.js +14 -4
- package/src/graphics/mons/render-mon-foot.js +17 -5
- package/src/graphics/mons/render-mon-icon.js +27 -6
- package/src/graphics/mons/render-mons.js +15 -6
- package/src/graphics/moves/render-moves.js +44 -29
- package/src/graphics/trainers/render-trainer-back-pics.js +52 -10
- package/src/graphics/trainers/render-trainers.js +16 -19
- package/src/is-valid-filter-type.js +15 -0
- package/src/run-with-concurrency.js +12 -0
- package/src/validate-render-options.js +28 -0
- package/trainer-data/trainerData.json +148 -444
package/move-data/moveData.json
CHANGED
|
@@ -2,9 +2,6 @@
|
|
|
2
2
|
"BONE": {
|
|
3
3
|
"index": 0,
|
|
4
4
|
"animTag": "ANIM_TAG_BONE",
|
|
5
|
-
"possibleFrameSize": "32x32",
|
|
6
|
-
"possibleFrameWidth": 32,
|
|
7
|
-
"possibleFrameHeight": 32,
|
|
8
5
|
"imageSize": "32x32",
|
|
9
6
|
"imageWidth": 32,
|
|
10
7
|
"imageHeight": 32,
|
|
@@ -17,9 +14,6 @@
|
|
|
17
14
|
"SPARK": {
|
|
18
15
|
"index": 1,
|
|
19
16
|
"animTag": "ANIM_TAG_SPARK",
|
|
20
|
-
"possibleFrameSize": "8x8",
|
|
21
|
-
"possibleFrameWidth": 8,
|
|
22
|
-
"possibleFrameHeight": 8,
|
|
23
17
|
"imageSize": "8x64",
|
|
24
18
|
"imageWidth": 8,
|
|
25
19
|
"imageHeight": 64,
|
|
@@ -32,9 +26,6 @@
|
|
|
32
26
|
"PENCIL": {
|
|
33
27
|
"index": 2,
|
|
34
28
|
"animTag": "ANIM_TAG_PENCIL",
|
|
35
|
-
"possibleFrameSize": "32x32",
|
|
36
|
-
"possibleFrameWidth": 32,
|
|
37
|
-
"possibleFrameHeight": 32,
|
|
38
29
|
"imageSize": "32x32",
|
|
39
30
|
"imageWidth": 32,
|
|
40
31
|
"imageHeight": 32,
|
|
@@ -46,9 +37,6 @@
|
|
|
46
37
|
"AIR_WAVE": {
|
|
47
38
|
"index": 3,
|
|
48
39
|
"animTag": "ANIM_TAG_AIR_WAVE",
|
|
49
|
-
"possibleFrameSize": "32x16",
|
|
50
|
-
"possibleFrameWidth": 32,
|
|
51
|
-
"possibleFrameHeight": 16,
|
|
52
40
|
"imageSize": "32x16",
|
|
53
41
|
"imageWidth": 32,
|
|
54
42
|
"imageHeight": 16,
|
|
@@ -60,9 +48,6 @@
|
|
|
60
48
|
"ORB": {
|
|
61
49
|
"index": 4,
|
|
62
50
|
"animTag": "ANIM_TAG_ORB",
|
|
63
|
-
"possibleFrameSize": "16x16",
|
|
64
|
-
"possibleFrameWidth": 16,
|
|
65
|
-
"possibleFrameHeight": 16,
|
|
66
51
|
"imageSize": "16x64",
|
|
67
52
|
"imageWidth": 16,
|
|
68
53
|
"imageHeight": 64,
|
|
@@ -77,9 +62,6 @@
|
|
|
77
62
|
"SWORD": {
|
|
78
63
|
"index": 5,
|
|
79
64
|
"animTag": "ANIM_TAG_SWORD",
|
|
80
|
-
"possibleFrameSize": "32x64",
|
|
81
|
-
"possibleFrameWidth": 32,
|
|
82
|
-
"possibleFrameHeight": 64,
|
|
83
65
|
"imageSize": "32x64",
|
|
84
66
|
"imageWidth": 32,
|
|
85
67
|
"imageHeight": 64,
|
|
@@ -91,9 +73,6 @@
|
|
|
91
73
|
"SEED": {
|
|
92
74
|
"index": 6,
|
|
93
75
|
"animTag": "ANIM_TAG_SEED",
|
|
94
|
-
"possibleFrameSize": "16x16",
|
|
95
|
-
"possibleFrameWidth": 16,
|
|
96
|
-
"possibleFrameHeight": 16,
|
|
97
76
|
"imageSize": "16x48",
|
|
98
77
|
"imageWidth": 16,
|
|
99
78
|
"imageHeight": 48,
|
|
@@ -107,9 +86,6 @@
|
|
|
107
86
|
"EXPLOSION_6": {
|
|
108
87
|
"index": 7,
|
|
109
88
|
"animTag": "ANIM_TAG_EXPLOSION_6",
|
|
110
|
-
"possibleFrameSize": "32x32",
|
|
111
|
-
"possibleFrameWidth": 32,
|
|
112
|
-
"possibleFrameHeight": 32,
|
|
113
89
|
"imageSize": "32x128",
|
|
114
90
|
"imageWidth": 32,
|
|
115
91
|
"imageHeight": 128,
|
|
@@ -143,9 +119,6 @@
|
|
|
143
119
|
"GUST": {
|
|
144
120
|
"index": 9,
|
|
145
121
|
"animTag": "ANIM_TAG_GUST",
|
|
146
|
-
"possibleFrameSize": "32x64",
|
|
147
|
-
"possibleFrameWidth": 32,
|
|
148
|
-
"possibleFrameHeight": 64,
|
|
149
122
|
"imageSize": "32x64",
|
|
150
123
|
"imageWidth": 32,
|
|
151
124
|
"imageHeight": 64,
|
|
@@ -157,9 +130,6 @@
|
|
|
157
130
|
"ICE_CUBE": {
|
|
158
131
|
"index": 10,
|
|
159
132
|
"animTag": "ANIM_TAG_ICE_CUBE",
|
|
160
|
-
"possibleFrameSize": "64x64",
|
|
161
|
-
"possibleFrameWidth": 64,
|
|
162
|
-
"possibleFrameHeight": 64,
|
|
163
133
|
"note": "so I think this image is actually 4 images slapped into one... as such to extract the image will need to be unusually large... so let me test this I guess :p of course though without image slicing for now",
|
|
164
134
|
"note2": "erm I can't really figure this out... it appears when this image was concat(ed) it got very finely mushed together... so it is kinda hard to tell where the frames are... sure the image is separated but it doesn't line up with the pret image refrences...",
|
|
165
135
|
"imageSize": "64x192",
|
|
@@ -173,9 +143,6 @@
|
|
|
173
143
|
"SPARK_2": {
|
|
174
144
|
"index": 11,
|
|
175
145
|
"animTag": "ANIM_TAG_SPARK_2",
|
|
176
|
-
"possibleFrameSize": "16x16",
|
|
177
|
-
"possibleFrameWidth": 16,
|
|
178
|
-
"possibleFrameHeight": 16,
|
|
179
146
|
"imageSize": "16x48",
|
|
180
147
|
"imageWidth": 16,
|
|
181
148
|
"imageHeight": 48,
|
|
@@ -206,9 +173,6 @@
|
|
|
206
173
|
"YELLOW_BALL": {
|
|
207
174
|
"index": 13,
|
|
208
175
|
"animTag": "ANIM_TAG_YELLOW_BALL",
|
|
209
|
-
"possibleFrameSize": "16x16",
|
|
210
|
-
"possibleFrameWidth": 16,
|
|
211
|
-
"possibleFrameHeight": 16,
|
|
212
176
|
"imageSize": "16x16",
|
|
213
177
|
"imageWidth": 16,
|
|
214
178
|
"imageHeight": 16,
|
|
@@ -220,9 +184,6 @@
|
|
|
220
184
|
"LOCK_ON": {
|
|
221
185
|
"index": 14,
|
|
222
186
|
"animTag": "ANIM_TAG_LOCK_ON",
|
|
223
|
-
"possibleFrameSize": "16x16",
|
|
224
|
-
"possibleFrameWidth": 16,
|
|
225
|
-
"possibleFrameHeight": 16,
|
|
226
187
|
"imageSize": "32x40",
|
|
227
188
|
"imageWidth": 32,
|
|
228
189
|
"imageHeight": 40,
|
|
@@ -238,9 +199,6 @@
|
|
|
238
199
|
"TIED_BAG": {
|
|
239
200
|
"index": 15,
|
|
240
201
|
"animTag": "ANIM_TAG_TIED_BAG",
|
|
241
|
-
"possibleFrameSize": "16x16",
|
|
242
|
-
"possibleFrameWidth": 16,
|
|
243
|
-
"possibleFrameHeight": 16,
|
|
244
202
|
"imageSize": "16x16",
|
|
245
203
|
"imageWidth": 16,
|
|
246
204
|
"imageHeight": 16,
|
|
@@ -252,9 +210,6 @@
|
|
|
252
210
|
"BLACK_SMOKE": {
|
|
253
211
|
"index": 16,
|
|
254
212
|
"animTag": "ANIM_TAG_BLACK_SMOKE",
|
|
255
|
-
"possibleFrameSize": "32x16",
|
|
256
|
-
"possibleFrameWidth": 32,
|
|
257
|
-
"possibleFrameHeight": 16,
|
|
258
213
|
"imageSize": "32x16",
|
|
259
214
|
"imageWidth": 32,
|
|
260
215
|
"imageHeight": 16,
|
|
@@ -266,9 +221,6 @@
|
|
|
266
221
|
"BLACK_BALL": {
|
|
267
222
|
"index": 17,
|
|
268
223
|
"animTag": "ANIM_TAG_BLACK_BALL",
|
|
269
|
-
"possibleFrameSize": "8x8",
|
|
270
|
-
"possibleFrameWidth": 8,
|
|
271
|
-
"possibleFrameHeight": 8,
|
|
272
224
|
"imageSize": "8x8",
|
|
273
225
|
"imageWidth": 8,
|
|
274
226
|
"imageHeight": 8,
|
|
@@ -280,9 +232,6 @@
|
|
|
280
232
|
"CONVERSION": {
|
|
281
233
|
"index": 18,
|
|
282
234
|
"animTag": "ANIM_TAG_CONVERSION",
|
|
283
|
-
"possibleFrameSize": "8x8",
|
|
284
|
-
"possibleFrameWidth": 8,
|
|
285
|
-
"possibleFrameHeight": 8,
|
|
286
235
|
"imageSize": "8x32",
|
|
287
236
|
"imageWidth": 8,
|
|
288
237
|
"imageHeight": 32,
|
|
@@ -315,9 +264,6 @@
|
|
|
315
264
|
"HORN_HIT": {
|
|
316
265
|
"index": 20,
|
|
317
266
|
"animTag": "ANIM_TAG_HORN_HIT",
|
|
318
|
-
"possibleFrameSize": "32x32",
|
|
319
|
-
"possibleFrameWidth": 32,
|
|
320
|
-
"possibleFrameHeight": 32,
|
|
321
267
|
"imageSize": "32x32",
|
|
322
268
|
"imageWidth": 32,
|
|
323
269
|
"imageHeight": 32,
|
|
@@ -329,9 +275,6 @@
|
|
|
329
275
|
"HIT": {
|
|
330
276
|
"index": 21,
|
|
331
277
|
"animTag": "ANIM_TAG_HIT",
|
|
332
|
-
"possibleFrameSize": "32x32",
|
|
333
|
-
"possibleFrameWidth": 32,
|
|
334
|
-
"possibleFrameHeight": 32,
|
|
335
278
|
"imageSize": "32x160",
|
|
336
279
|
"imageWidth": 32,
|
|
337
280
|
"imageHeight": 160,
|
|
@@ -347,9 +290,6 @@
|
|
|
347
290
|
"HIT_2": {
|
|
348
291
|
"index": 22,
|
|
349
292
|
"animTag": "ANIM_TAG_HIT_2",
|
|
350
|
-
"possibleFrameSize": "32x32",
|
|
351
|
-
"possibleFrameWidth": 32,
|
|
352
|
-
"possibleFrameHeight": 32,
|
|
353
293
|
"imageSize": "32x160",
|
|
354
294
|
"imageWidth": 32,
|
|
355
295
|
"imageHeight": 160,
|
|
@@ -517,9 +457,6 @@
|
|
|
517
457
|
"LEER": {
|
|
518
458
|
"index": 27,
|
|
519
459
|
"animTag": "ANIM_TAG_LEER",
|
|
520
|
-
"possibleFrameSize": "32x32",
|
|
521
|
-
"possibleFrameWidth": 32,
|
|
522
|
-
"possibleFrameHeight": 32,
|
|
523
460
|
"imageSize": "32x160",
|
|
524
461
|
"imageWidth": 32,
|
|
525
462
|
"imageHeight": 160,
|
|
@@ -576,9 +513,6 @@
|
|
|
576
513
|
"SMALL_EMBER": {
|
|
577
514
|
"index": 29,
|
|
578
515
|
"animTag": "ANIM_TAG_SMALL_EMBER",
|
|
579
|
-
"possibleFrameSize": "32x32",
|
|
580
|
-
"possibleFrameWidth": 32,
|
|
581
|
-
"possibleFrameHeight": 32,
|
|
582
516
|
"imageSize": "32x160",
|
|
583
517
|
"imageWidth": 32,
|
|
584
518
|
"imageHeight": 160,
|
|
@@ -594,9 +528,6 @@
|
|
|
594
528
|
"GRAY_SMOKE": {
|
|
595
529
|
"index": 30,
|
|
596
530
|
"animTag": "ANIM_TAG_GRAY_SMOKE",
|
|
597
|
-
"possibleFrameSize": "32x32",
|
|
598
|
-
"possibleFrameWidth": 32,
|
|
599
|
-
"possibleFrameHeight": 32,
|
|
600
531
|
"imageSize": "32x160",
|
|
601
532
|
"imageWidth": 32,
|
|
602
533
|
"imageHeight": 160,
|
|
@@ -612,9 +543,6 @@
|
|
|
612
543
|
"BLUE_STAR": {
|
|
613
544
|
"index": 31,
|
|
614
545
|
"animTag": "ANIM_TAG_BLUE_STAR",
|
|
615
|
-
"possibleFrameSize": "32x32",
|
|
616
|
-
"possibleFrameWidth": 32,
|
|
617
|
-
"possibleFrameHeight": 32,
|
|
618
546
|
"imageSize": "32x224",
|
|
619
547
|
"imageWidth": 32,
|
|
620
548
|
"imageHeight": 224,
|
|
@@ -632,9 +560,6 @@
|
|
|
632
560
|
"BUBBLE_BURST": {
|
|
633
561
|
"index": 32,
|
|
634
562
|
"animTag": "ANIM_TAG_BUBBLE_BURST",
|
|
635
|
-
"possibleFrameSize": "16x16",
|
|
636
|
-
"possibleFrameWidth": 16,
|
|
637
|
-
"possibleFrameHeight": 16,
|
|
638
563
|
"imageSize": "16x112",
|
|
639
564
|
"imageWidth": 16,
|
|
640
565
|
"imageHeight": 112,
|
|
@@ -652,9 +577,6 @@
|
|
|
652
577
|
"FIRE": {
|
|
653
578
|
"index": 33,
|
|
654
579
|
"animTag": "ANIM_TAG_FIRE",
|
|
655
|
-
"possibleFrameSize": "32x32",
|
|
656
|
-
"possibleFrameWidth": 32,
|
|
657
|
-
"possibleFrameHeight": 32,
|
|
658
580
|
"imageSize": "32x256",
|
|
659
581
|
"imageWidth": 32,
|
|
660
582
|
"imageHeight": 256,
|
|
@@ -708,9 +630,6 @@
|
|
|
708
630
|
"FIRE_PLUME": {
|
|
709
631
|
"index": 35,
|
|
710
632
|
"animTag": "ANIM_TAG_FIRE_PLUME",
|
|
711
|
-
"possibleFrameSize": "32x32",
|
|
712
|
-
"possibleFrameWidth": 32,
|
|
713
|
-
"possibleFrameHeight": 32,
|
|
714
633
|
"imageSize": "32x160",
|
|
715
634
|
"imageWidth": 32,
|
|
716
635
|
"imageHeight": 160,
|
|
@@ -761,9 +680,6 @@
|
|
|
761
680
|
"LIGHTNING": {
|
|
762
681
|
"index": 37,
|
|
763
682
|
"animTag": "ANIM_TAG_LIGHTNING",
|
|
764
|
-
"possibleFrameSize": "32x32",
|
|
765
|
-
"possibleFrameWidth": 32,
|
|
766
|
-
"possibleFrameHeight": 32,
|
|
767
683
|
"imageSize": "32x160",
|
|
768
684
|
"imageWidth": 32,
|
|
769
685
|
"imageHeight": 160,
|
|
@@ -814,9 +730,6 @@
|
|
|
814
730
|
"CLAW_SLASH": {
|
|
815
731
|
"index": 39,
|
|
816
732
|
"animTag": "ANIM_TAG_CLAW_SLASH",
|
|
817
|
-
"possibleFrameSize": "32x32",
|
|
818
|
-
"possibleFrameWidth": 32,
|
|
819
|
-
"possibleFrameHeight": 32,
|
|
820
733
|
"imageSize": "32x128",
|
|
821
734
|
"imageWidth": 32,
|
|
822
735
|
"imageHeight": 128,
|
|
@@ -954,9 +867,6 @@
|
|
|
954
867
|
"ICE_CHUNK": {
|
|
955
868
|
"index": 43,
|
|
956
869
|
"animTag": "ANIM_TAG_ICE_CHUNK",
|
|
957
|
-
"possibleFrameSize": "32x32",
|
|
958
|
-
"possibleFrameWidth": 32,
|
|
959
|
-
"possibleFrameHeight": 32,
|
|
960
870
|
"imageSize": "32x160",
|
|
961
871
|
"imageWidth": 32,
|
|
962
872
|
"imageHeight": 160,
|
|
@@ -1192,9 +1102,6 @@
|
|
|
1192
1102
|
"SPARKLE_2": {
|
|
1193
1103
|
"index": 49,
|
|
1194
1104
|
"animTag": "ANIM_TAG_SPARKLE_2",
|
|
1195
|
-
"possibleFrameSize": "32x32",
|
|
1196
|
-
"possibleFrameWidth": 32,
|
|
1197
|
-
"possibleFrameHeight": 32,
|
|
1198
1105
|
"imageSize": "32x256",
|
|
1199
1106
|
"imageWidth": 32,
|
|
1200
1107
|
"imageHeight": 256,
|
|
@@ -1213,9 +1120,6 @@
|
|
|
1213
1120
|
"HUMANOID_FOOT": {
|
|
1214
1121
|
"index": 50,
|
|
1215
1122
|
"animTag": "ANIM_TAG_HUMANOID_FOOT",
|
|
1216
|
-
"possibleFrameSize": "32x32",
|
|
1217
|
-
"possibleFrameWidth": 32,
|
|
1218
|
-
"possibleFrameHeight": 32,
|
|
1219
1123
|
"imageSize": "32x32",
|
|
1220
1124
|
"imageWidth": 32,
|
|
1221
1125
|
"imageHeight": 32,
|
|
@@ -1227,9 +1131,6 @@
|
|
|
1227
1131
|
"MONSTER_FOOT": {
|
|
1228
1132
|
"index": 51,
|
|
1229
1133
|
"animTag": "ANIM_TAG_MONSTER_FOOT",
|
|
1230
|
-
"possibleFrameSize": "32x32",
|
|
1231
|
-
"possibleFrameWidth": 32,
|
|
1232
|
-
"possibleFrameHeight": 32,
|
|
1233
1134
|
"imageSize": "32x32",
|
|
1234
1135
|
"imageWidth": 32,
|
|
1235
1136
|
"imageHeight": 32,
|
|
@@ -1258,9 +1159,6 @@
|
|
|
1258
1159
|
"NOISE_LINE": {
|
|
1259
1160
|
"index": 53,
|
|
1260
1161
|
"animTag": "ANIM_TAG_NOISE_LINE",
|
|
1261
|
-
"possibleFrameSize": "32x32",
|
|
1262
|
-
"possibleFrameWidth": 32,
|
|
1263
|
-
"possibleFrameHeight": 32,
|
|
1264
1162
|
"imageSize": "32x128",
|
|
1265
1163
|
"imageWidth": 32,
|
|
1266
1164
|
"imageHeight": 128,
|
|
@@ -1309,9 +1207,6 @@
|
|
|
1309
1207
|
"SLAM_HIT": {
|
|
1310
1208
|
"index": 56,
|
|
1311
1209
|
"animTag": "ANIM_TAG_SLAM_HIT",
|
|
1312
|
-
"possibleFrameSize": "32x32",
|
|
1313
|
-
"possibleFrameWidth": 32,
|
|
1314
|
-
"possibleFrameHeight": 32,
|
|
1315
1210
|
"imageSize": "32x256",
|
|
1316
1211
|
"imageWidth": 32,
|
|
1317
1212
|
"imageHeight": 256,
|
|
@@ -1359,9 +1254,6 @@
|
|
|
1359
1254
|
"ROCKS": {
|
|
1360
1255
|
"index": 58,
|
|
1361
1256
|
"animTag": "ANIM_TAG_ROCKS",
|
|
1362
|
-
"possibleFrameSize": "32x32",
|
|
1363
|
-
"possibleFrameWidth": 32,
|
|
1364
|
-
"possibleFrameHeight": 32,
|
|
1365
1257
|
"imageSize": "32x192",
|
|
1366
1258
|
"imageWidth": 32,
|
|
1367
1259
|
"imageHeight": 192,
|
|
@@ -1483,9 +1375,6 @@
|
|
|
1483
1375
|
"LEAF": {
|
|
1484
1376
|
"index": 63,
|
|
1485
1377
|
"animTag": "ANIM_TAG_LEAF",
|
|
1486
|
-
"possibleFrameSize": "16x16",
|
|
1487
|
-
"possibleFrameWidth": 16,
|
|
1488
|
-
"possibleFrameHeight": 16,
|
|
1489
1378
|
"imageSize": "16x144",
|
|
1490
1379
|
"imageWidth": 16,
|
|
1491
1380
|
"imageHeight": 144,
|
|
@@ -1505,9 +1394,6 @@
|
|
|
1505
1394
|
"FINGER": {
|
|
1506
1395
|
"index": 64,
|
|
1507
1396
|
"animTag": "ANIM_TAG_FINGER",
|
|
1508
|
-
"possibleFrameSize": "32x32",
|
|
1509
|
-
"possibleFrameWidth": 32,
|
|
1510
|
-
"possibleFrameHeight": 32,
|
|
1511
1397
|
"imageSize": "32x32",
|
|
1512
1398
|
"imageWidth": 32,
|
|
1513
1399
|
"imageHeight": 32,
|
|
@@ -1519,9 +1405,6 @@
|
|
|
1519
1405
|
"POISON_POWDER": {
|
|
1520
1406
|
"index": 65,
|
|
1521
1407
|
"animTag": "ANIM_TAG_POISON_POWDER",
|
|
1522
|
-
"possibleFrameSize": "8x16",
|
|
1523
|
-
"possibleFrameWidth": 8,
|
|
1524
|
-
"possibleFrameHeight": 16,
|
|
1525
1408
|
"imageSize": "8x128",
|
|
1526
1409
|
"imageWidth": 8,
|
|
1527
1410
|
"imageHeight": 128,
|
|
@@ -1563,9 +1446,6 @@
|
|
|
1563
1446
|
"SLEEP_POWDER": {
|
|
1564
1447
|
"index": 67,
|
|
1565
1448
|
"animTag": "ANIM_TAG_SLEEP_POWDER",
|
|
1566
|
-
"possibleFrameSize": "8x16",
|
|
1567
|
-
"possibleFrameWidth": 8,
|
|
1568
|
-
"possibleFrameHeight": 16,
|
|
1569
1449
|
"imageSize": "8x128",
|
|
1570
1450
|
"imageWidth": 8,
|
|
1571
1451
|
"imageHeight": 128,
|
|
@@ -1584,9 +1464,6 @@
|
|
|
1584
1464
|
"STUN_SPORE": {
|
|
1585
1465
|
"index": 68,
|
|
1586
1466
|
"animTag": "ANIM_TAG_STUN_SPORE",
|
|
1587
|
-
"possibleFrameSize": "8x16",
|
|
1588
|
-
"possibleFrameWidth": 8,
|
|
1589
|
-
"possibleFrameHeight": 16,
|
|
1590
1467
|
"imageSize": "8x128",
|
|
1591
1468
|
"imageWidth": 8,
|
|
1592
1469
|
"imageHeight": 128,
|
|
@@ -1664,9 +1541,6 @@
|
|
|
1664
1541
|
"SPARKLE_3": {
|
|
1665
1542
|
"index": 70,
|
|
1666
1543
|
"animTag": "ANIM_TAG_SPARKLE_3",
|
|
1667
|
-
"possibleFrameSize": "16x16",
|
|
1668
|
-
"possibleFrameWidth": 16,
|
|
1669
|
-
"possibleFrameHeight": 16,
|
|
1670
1544
|
"imageSize": "16x64",
|
|
1671
1545
|
"imageWidth": 16,
|
|
1672
1546
|
"imageHeight": 64,
|
|
@@ -1682,9 +1556,6 @@
|
|
|
1682
1556
|
"SPARKLE_4": {
|
|
1683
1557
|
"index": 71,
|
|
1684
1558
|
"animTag": "ANIM_TAG_SPARKLE_4",
|
|
1685
|
-
"possibleFrameSize": "32x32",
|
|
1686
|
-
"possibleFrameWidth": 32,
|
|
1687
|
-
"possibleFrameHeight": 32,
|
|
1688
1559
|
"imageSize": "32x160",
|
|
1689
1560
|
"imageWidth": 32,
|
|
1690
1561
|
"imageHeight": 160,
|
|
@@ -1700,9 +1571,6 @@
|
|
|
1700
1571
|
"MUSIC_NOTES": {
|
|
1701
1572
|
"index": 72,
|
|
1702
1573
|
"animTag": "ANIM_TAG_MUSIC_NOTES",
|
|
1703
|
-
"possibleFrameSize": "16x16",
|
|
1704
|
-
"possibleFrameWidth": 16,
|
|
1705
|
-
"possibleFrameHeight": 16,
|
|
1706
1574
|
"imageSize": "16x96",
|
|
1707
1575
|
"imageWidth": 16,
|
|
1708
1576
|
"imageHeight": 96,
|
|
@@ -1719,9 +1587,6 @@
|
|
|
1719
1587
|
"DUCK": {
|
|
1720
1588
|
"index": 73,
|
|
1721
1589
|
"animTag": "ANIM_TAG_DUCK",
|
|
1722
|
-
"possibleFrameSize": "16x16",
|
|
1723
|
-
"possibleFrameWidth": 16,
|
|
1724
|
-
"possibleFrameHeight": 16,
|
|
1725
1590
|
"imageSize": "16x48",
|
|
1726
1591
|
"imageWidth": 16,
|
|
1727
1592
|
"imageHeight": 48,
|
|
@@ -1735,9 +1600,6 @@
|
|
|
1735
1600
|
"MUD_SAND": {
|
|
1736
1601
|
"index": 74,
|
|
1737
1602
|
"animTag": "ANIM_TAG_MUD_SAND",
|
|
1738
|
-
"possibleFrameSize": "8x8",
|
|
1739
|
-
"possibleFrameWidth": 8,
|
|
1740
|
-
"possibleFrameHeight": 8,
|
|
1741
1603
|
"imageSize": "16x24",
|
|
1742
1604
|
"imageWidth": 16,
|
|
1743
1605
|
"imageHeight": 24,
|
|
@@ -1752,9 +1614,6 @@
|
|
|
1752
1614
|
"ALERT": {
|
|
1753
1615
|
"index": 75,
|
|
1754
1616
|
"animTag": "ANIM_TAG_ALERT",
|
|
1755
|
-
"possibleFrameSize": "32x16",
|
|
1756
|
-
"possibleFrameWidth": 32,
|
|
1757
|
-
"possibleFrameHeight": 16,
|
|
1758
1617
|
"imageSize": "32x112",
|
|
1759
1618
|
"imageWidth": 32,
|
|
1760
1619
|
"imageHeight": 112,
|
|
@@ -1889,9 +1748,6 @@
|
|
|
1889
1748
|
"SHOCK": {
|
|
1890
1749
|
"index": 79,
|
|
1891
1750
|
"animTag": "ANIM_TAG_SHOCK",
|
|
1892
|
-
"possibleFrameSize": "32x32",
|
|
1893
|
-
"possibleFrameWidth": 32,
|
|
1894
|
-
"possibleFrameHeight": 32,
|
|
1895
1751
|
"imageSize": "32x192",
|
|
1896
1752
|
"imageWidth": 32,
|
|
1897
1753
|
"imageHeight": 192,
|
|
@@ -2095,9 +1951,6 @@
|
|
|
2095
1951
|
"BREATH": {
|
|
2096
1952
|
"index": 86,
|
|
2097
1953
|
"animTag": "ANIM_TAG_BREATH",
|
|
2098
|
-
"possibleFrameSize": "16x16",
|
|
2099
|
-
"possibleFrameWidth": 16,
|
|
2100
|
-
"possibleFrameHeight": 16,
|
|
2101
1954
|
"imageSize": "16x64",
|
|
2102
1955
|
"imageWidth": 16,
|
|
2103
1956
|
"imageHeight": 64,
|
|
@@ -2112,9 +1965,6 @@
|
|
|
2112
1965
|
"ANGER": {
|
|
2113
1966
|
"index": 87,
|
|
2114
1967
|
"animTag": "ANIM_TAG_ANGER",
|
|
2115
|
-
"possibleFrameSize": "16x16",
|
|
2116
|
-
"possibleFrameWidth": 16,
|
|
2117
|
-
"possibleFrameHeight": 16,
|
|
2118
1968
|
"imageSize": "16x16",
|
|
2119
1969
|
"imageWidth": 16,
|
|
2120
1970
|
"imageHeight": 16,
|
|
@@ -2290,9 +2140,6 @@
|
|
|
2290
2140
|
"AMNESIA": {
|
|
2291
2141
|
"index": 93,
|
|
2292
2142
|
"animTag": "ANIM_TAG_AMNESIA",
|
|
2293
|
-
"possibleFrameSize": "32x32",
|
|
2294
|
-
"possibleFrameWidth": 32,
|
|
2295
|
-
"possibleFrameHeight": 32,
|
|
2296
2143
|
"imageSize": "32x256",
|
|
2297
2144
|
"imageWidth": 32,
|
|
2298
2145
|
"imageHeight": 256,
|
|
@@ -2411,9 +2258,6 @@
|
|
|
2411
2258
|
"BENT_SPOON": {
|
|
2412
2259
|
"index": 97,
|
|
2413
2260
|
"animTag": "ANIM_TAG_BENT_SPOON",
|
|
2414
|
-
"possibleFrameSize": "16x32",
|
|
2415
|
-
"possibleFrameWidth": 16,
|
|
2416
|
-
"possibleFrameHeight": 32,
|
|
2417
2261
|
"imageSize": "16x192",
|
|
2418
2262
|
"imageWidth": 16,
|
|
2419
2263
|
"imageHeight": 192,
|
|
@@ -2447,9 +2291,6 @@
|
|
|
2447
2291
|
"MILK_BOTTLE": {
|
|
2448
2292
|
"index": 99,
|
|
2449
2293
|
"animTag": "ANIM_TAG_MILK_BOTTLE",
|
|
2450
|
-
"possibleFrameSize": "32x32",
|
|
2451
|
-
"possibleFrameWidth": 32,
|
|
2452
|
-
"possibleFrameHeight": 32,
|
|
2453
2294
|
"imageSize": "32x32",
|
|
2454
2295
|
"imageWidth": 32,
|
|
2455
2296
|
"imageHeight": 32,
|
|
@@ -2461,9 +2302,6 @@
|
|
|
2461
2302
|
"COIN": {
|
|
2462
2303
|
"index": 100,
|
|
2463
2304
|
"animTag": "ANIM_TAG_COIN",
|
|
2464
|
-
"possibleFrameSize": "16x16",
|
|
2465
|
-
"possibleFrameWidth": 16,
|
|
2466
|
-
"possibleFrameHeight": 16,
|
|
2467
2305
|
"imageSize": "16x64",
|
|
2468
2306
|
"imageWidth": 16,
|
|
2469
2307
|
"imageHeight": 64,
|
|
@@ -2933,9 +2771,6 @@
|
|
|
2933
2771
|
"RAIN_DROPS": {
|
|
2934
2772
|
"index": 115,
|
|
2935
2773
|
"animTag": "ANIM_TAG_RAIN_DROPS",
|
|
2936
|
-
"possibleFrameSize": "16x32",
|
|
2937
|
-
"possibleFrameWidth": 16,
|
|
2938
|
-
"possibleFrameHeight": 32,
|
|
2939
2774
|
"imageSize": "16x224",
|
|
2940
2775
|
"imageWidth": 16,
|
|
2941
2776
|
"imageHeight": 224,
|
|
@@ -3519,9 +3354,6 @@
|
|
|
3519
3354
|
"IMPACT": {
|
|
3520
3355
|
"index": 135,
|
|
3521
3356
|
"animTag": "ANIM_TAG_IMPACT",
|
|
3522
|
-
"possibleFrameSize": "32x32",
|
|
3523
|
-
"possibleFrameWidth": 32,
|
|
3524
|
-
"possibleFrameHeight": 32,
|
|
3525
3357
|
"imageSize": "32x32",
|
|
3526
3358
|
"imageWidth": 32,
|
|
3527
3359
|
"imageHeight": 32,
|
|
@@ -3533,9 +3365,6 @@
|
|
|
3533
3365
|
"CIRCLE_IMPACT": {
|
|
3534
3366
|
"index": 136,
|
|
3535
3367
|
"animTag": "ANIM_TAG_CIRCLE_IMPACT",
|
|
3536
|
-
"possibleFrameSize": "8x8",
|
|
3537
|
-
"possibleFrameWidth": 8,
|
|
3538
|
-
"possibleFrameHeight": 8,
|
|
3539
3368
|
"imageSize": "8x8",
|
|
3540
3369
|
"imageWidth": 8,
|
|
3541
3370
|
"imageHeight": 8,
|
|
@@ -3547,9 +3376,6 @@
|
|
|
3547
3376
|
"SCRATCH": {
|
|
3548
3377
|
"index": 137,
|
|
3549
3378
|
"animTag": "ANIM_TAG_SCRATCH",
|
|
3550
|
-
"possibleFrameSize": "32x32",
|
|
3551
|
-
"possibleFrameWidth": 32,
|
|
3552
|
-
"possibleFrameHeight": 32,
|
|
3553
3379
|
"imageSize": "32x160",
|
|
3554
3380
|
"imageWidth": 32,
|
|
3555
3381
|
"imageHeight": 160,
|
|
@@ -3565,9 +3391,6 @@
|
|
|
3565
3391
|
"CUT": {
|
|
3566
3392
|
"index": 138,
|
|
3567
3393
|
"animTag": "ANIM_TAG_CUT",
|
|
3568
|
-
"possibleFrameSize": "32x32",
|
|
3569
|
-
"possibleFrameWidth": 32,
|
|
3570
|
-
"possibleFrameHeight": 32,
|
|
3571
3394
|
"imageSize": "32x128",
|
|
3572
3395
|
"imageWidth": 32,
|
|
3573
3396
|
"imageHeight": 128,
|
|
@@ -3582,9 +3405,6 @@
|
|
|
3582
3405
|
"SHARP_TEETH": {
|
|
3583
3406
|
"index": 139,
|
|
3584
3407
|
"animTag": "ANIM_TAG_SHARP_TEETH",
|
|
3585
|
-
"possibleFrameSize": "64x64",
|
|
3586
|
-
"possibleFrameWidth": 64,
|
|
3587
|
-
"possibleFrameHeight": 64,
|
|
3588
3408
|
"imageSize": "64x64",
|
|
3589
3409
|
"imageWidth": 64,
|
|
3590
3410
|
"imageHeight": 64,
|
|
@@ -3596,9 +3416,6 @@
|
|
|
3596
3416
|
"RAINBOW_RINGS": {
|
|
3597
3417
|
"index": 140,
|
|
3598
3418
|
"animTag": "ANIM_TAG_RAINBOW_RINGS",
|
|
3599
|
-
"possibleFrameSize": "8x16",
|
|
3600
|
-
"possibleFrameWidth": 8,
|
|
3601
|
-
"possibleFrameHeight": 16,
|
|
3602
3419
|
"imageSize": "8x48",
|
|
3603
3420
|
"imageWidth": 8,
|
|
3604
3421
|
"imageHeight": 48,
|
|
@@ -3612,9 +3429,6 @@
|
|
|
3612
3429
|
"ICE_CRYSTALS": {
|
|
3613
3430
|
"index": 141,
|
|
3614
3431
|
"animTag": "ANIM_TAG_ICE_CRYSTALS",
|
|
3615
|
-
"possibleFrameSize": "8x8",
|
|
3616
|
-
"possibleFrameWidth": 8,
|
|
3617
|
-
"possibleFrameHeight": 8,
|
|
3618
3432
|
"imageSize": "16x56",
|
|
3619
3433
|
"imageWidth": 16,
|
|
3620
3434
|
"imageHeight": 56,
|
|
@@ -3633,9 +3447,6 @@
|
|
|
3633
3447
|
"ICE_SPIKES": {
|
|
3634
3448
|
"index": 142,
|
|
3635
3449
|
"animTag": "ANIM_TAG_ICE_SPIKES",
|
|
3636
|
-
"possibleFrameSize": "8x16",
|
|
3637
|
-
"possibleFrameWidth": 8,
|
|
3638
|
-
"possibleFrameHeight": 16,
|
|
3639
3450
|
"imageSize": "8x64",
|
|
3640
3451
|
"imageWidth": 8,
|
|
3641
3452
|
"imageHeight": 64,
|
|
@@ -3650,9 +3461,6 @@
|
|
|
3650
3461
|
"HANDS_AND_FEET": {
|
|
3651
3462
|
"index": 143,
|
|
3652
3463
|
"animTag": "ANIM_TAG_HANDS_AND_FEET",
|
|
3653
|
-
"possibleFrameSize": "32x32",
|
|
3654
|
-
"possibleFrameWidth": 32,
|
|
3655
|
-
"possibleFrameHeight": 32,
|
|
3656
3464
|
"imageSize": "32x128",
|
|
3657
3465
|
"imageWidth": 32,
|
|
3658
3466
|
"imageHeight": 128,
|
|
@@ -3667,9 +3475,6 @@
|
|
|
3667
3475
|
"MIST_CLOUD": {
|
|
3668
3476
|
"index": 144,
|
|
3669
3477
|
"animTag": "ANIM_TAG_MIST_CLOUD",
|
|
3670
|
-
"possibleFrameSize": "32x16",
|
|
3671
|
-
"possibleFrameWidth": 32,
|
|
3672
|
-
"possibleFrameHeight": 16,
|
|
3673
3478
|
"imageSize": "32x32",
|
|
3674
3479
|
"imageWidth": 32,
|
|
3675
3480
|
"imageHeight": 32,
|
|
@@ -3682,9 +3487,6 @@
|
|
|
3682
3487
|
"CLAMP": {
|
|
3683
3488
|
"index": 145,
|
|
3684
3489
|
"animTag": "ANIM_TAG_CLAMP",
|
|
3685
|
-
"possibleFrameSize": "64x64",
|
|
3686
|
-
"possibleFrameWidth": 64,
|
|
3687
|
-
"possibleFrameHeight": 64,
|
|
3688
3490
|
"imageSize": "64x64",
|
|
3689
3491
|
"imageWidth": 64,
|
|
3690
3492
|
"imageHeight": 64,
|
|
@@ -3696,9 +3498,6 @@
|
|
|
3696
3498
|
"BUBBLE": {
|
|
3697
3499
|
"index": 146,
|
|
3698
3500
|
"animTag": "ANIM_TAG_BUBBLE",
|
|
3699
|
-
"possibleFrameSize": "16x16",
|
|
3700
|
-
"possibleFrameWidth": 16,
|
|
3701
|
-
"possibleFrameHeight": 16,
|
|
3702
3501
|
"imageSize": "16x48",
|
|
3703
3502
|
"imageWidth": 16,
|
|
3704
3503
|
"imageHeight": 48,
|
|
@@ -3712,9 +3511,6 @@
|
|
|
3712
3511
|
"ORBS": {
|
|
3713
3512
|
"index": 147,
|
|
3714
3513
|
"animTag": "ANIM_TAG_ORBS",
|
|
3715
|
-
"possibleFrameSize": "8x8",
|
|
3716
|
-
"possibleFrameWidth": 8,
|
|
3717
|
-
"possibleFrameHeight": 8,
|
|
3718
3514
|
"imageSize": "16x48",
|
|
3719
3515
|
"imageWidth": 16,
|
|
3720
3516
|
"imageHeight": 48,
|
|
@@ -3735,9 +3531,6 @@
|
|
|
3735
3531
|
"WATER_IMPACT": {
|
|
3736
3532
|
"index": 148,
|
|
3737
3533
|
"animTag": "ANIM_TAG_WATER_IMPACT",
|
|
3738
|
-
"possibleFrameSize": "32x32",
|
|
3739
|
-
"possibleFrameWidth": 32,
|
|
3740
|
-
"possibleFrameHeight": 32,
|
|
3741
3534
|
"imageSize": "32x32",
|
|
3742
3535
|
"imageWidth": 32,
|
|
3743
3536
|
"imageHeight": 32,
|
|
@@ -3749,9 +3542,6 @@
|
|
|
3749
3542
|
"WATER_ORB": {
|
|
3750
3543
|
"index": 149,
|
|
3751
3544
|
"animTag": "ANIM_TAG_WATER_ORB",
|
|
3752
|
-
"possibleFrameSize": "16x16",
|
|
3753
|
-
"possibleFrameWidth": 16,
|
|
3754
|
-
"possibleFrameHeight": 16,
|
|
3755
3545
|
"imageSize": "16x64",
|
|
3756
3546
|
"imageWidth": 16,
|
|
3757
3547
|
"imageHeight": 64,
|
|
@@ -3766,9 +3556,6 @@
|
|
|
3766
3556
|
"POISON_BUBBLE": {
|
|
3767
3557
|
"index": 150,
|
|
3768
3558
|
"animTag": "ANIM_TAG_POISON_BUBBLE",
|
|
3769
|
-
"possibleFrameSize": "16x16",
|
|
3770
|
-
"possibleFrameWidth": 16,
|
|
3771
|
-
"possibleFrameHeight": 16,
|
|
3772
3559
|
"imageSize": "16x48",
|
|
3773
3560
|
"imageWidth": 16,
|
|
3774
3561
|
"imageHeight": 48,
|
|
@@ -3782,9 +3569,6 @@
|
|
|
3782
3569
|
"TOXIC_BUBBLE": {
|
|
3783
3570
|
"index": 151,
|
|
3784
3571
|
"animTag": "ANIM_TAG_TOXIC_BUBBLE",
|
|
3785
|
-
"possibleFrameSize": "16x32",
|
|
3786
|
-
"possibleFrameWidth": 16,
|
|
3787
|
-
"possibleFrameHeight": 32,
|
|
3788
3572
|
"imageSize": "16x128",
|
|
3789
3573
|
"imageWidth": 16,
|
|
3790
3574
|
"imageHeight": 128,
|
|
@@ -3799,9 +3583,6 @@
|
|
|
3799
3583
|
"SPIKES": {
|
|
3800
3584
|
"index": 152,
|
|
3801
3585
|
"animTag": "ANIM_TAG_SPIKES",
|
|
3802
|
-
"possibleFrameSize": "16x16",
|
|
3803
|
-
"possibleFrameWidth": 16,
|
|
3804
|
-
"possibleFrameHeight": 16,
|
|
3805
3586
|
"imageSize": "16x16",
|
|
3806
3587
|
"imageWidth": 16,
|
|
3807
3588
|
"imageHeight": 16,
|
|
@@ -3813,9 +3594,6 @@
|
|
|
3813
3594
|
"HORN_HIT_2": {
|
|
3814
3595
|
"index": 153,
|
|
3815
3596
|
"animTag": "ANIM_TAG_HORN_HIT_2",
|
|
3816
|
-
"possibleFrameSize": "32x16",
|
|
3817
|
-
"possibleFrameWidth": 32,
|
|
3818
|
-
"possibleFrameHeight": 16,
|
|
3819
3597
|
"imageSize": "32x16",
|
|
3820
3598
|
"imageWidth": 32,
|
|
3821
3599
|
"imageHeight": 16,
|
|
@@ -3827,9 +3605,6 @@
|
|
|
3827
3605
|
"AIR_WAVE_2": {
|
|
3828
3606
|
"index": 154,
|
|
3829
3607
|
"animTag": "ANIM_TAG_AIR_WAVE_2",
|
|
3830
|
-
"possibleFrameSize": "32x16",
|
|
3831
|
-
"possibleFrameWidth": 32,
|
|
3832
|
-
"possibleFrameHeight": 16,
|
|
3833
3608
|
"imageSize": "32x16",
|
|
3834
3609
|
"imageWidth": 32,
|
|
3835
3610
|
"imageHeight": 16,
|
|
@@ -3841,9 +3616,6 @@
|
|
|
3841
3616
|
"SMALL_BUBBLES": {
|
|
3842
3617
|
"index": 155,
|
|
3843
3618
|
"animTag": "ANIM_TAG_SMALL_BUBBLES",
|
|
3844
|
-
"possibleFrameSize": "16x16",
|
|
3845
|
-
"possibleFrameWidth": 16,
|
|
3846
|
-
"possibleFrameHeight": 16,
|
|
3847
3619
|
"imageSize": "16x40",
|
|
3848
3620
|
"imageWidth": 16,
|
|
3849
3621
|
"imageHeight": 40,
|
|
@@ -3859,9 +3631,6 @@
|
|
|
3859
3631
|
"ROUND_SHADOW": {
|
|
3860
3632
|
"index": 156,
|
|
3861
3633
|
"animTag": "ANIM_TAG_ROUND_SHADOW",
|
|
3862
|
-
"possibleFrameSize": "64x64",
|
|
3863
|
-
"possibleFrameWidth": 64,
|
|
3864
|
-
"possibleFrameHeight": 64,
|
|
3865
3634
|
"imageSize": "64x64",
|
|
3866
3635
|
"imageWidth": 64,
|
|
3867
3636
|
"imageHeight": 64,
|
|
@@ -3873,9 +3642,6 @@
|
|
|
3873
3642
|
"SUNLIGHT": {
|
|
3874
3643
|
"index": 157,
|
|
3875
3644
|
"animTag": "ANIM_TAG_SUNLIGHT",
|
|
3876
|
-
"possibleFrameSize": "32x32",
|
|
3877
|
-
"possibleFrameWidth": 32,
|
|
3878
|
-
"possibleFrameHeight": 32,
|
|
3879
3645
|
"imageSize": "32x32",
|
|
3880
3646
|
"imageWidth": 32,
|
|
3881
3647
|
"imageHeight": 32,
|
|
@@ -3887,9 +3653,6 @@
|
|
|
3887
3653
|
"SPORE": {
|
|
3888
3654
|
"index": 158,
|
|
3889
3655
|
"animTag": "ANIM_TAG_SPORE",
|
|
3890
|
-
"possibleFrameSize": "16x16",
|
|
3891
|
-
"possibleFrameWidth": 16,
|
|
3892
|
-
"possibleFrameHeight": 16,
|
|
3893
3656
|
"imageSize": "16x32",
|
|
3894
3657
|
"imageWidth": 16,
|
|
3895
3658
|
"imageHeight": 32,
|
|
@@ -3902,9 +3665,6 @@
|
|
|
3902
3665
|
"FLOWER": {
|
|
3903
3666
|
"index": 159,
|
|
3904
3667
|
"animTag": "ANIM_TAG_FLOWER",
|
|
3905
|
-
"possibleFrameSize": "16x16",
|
|
3906
|
-
"possibleFrameWidth": 16,
|
|
3907
|
-
"possibleFrameHeight": 16,
|
|
3908
3668
|
"imageSize": "16x24",
|
|
3909
3669
|
"imageWidth": 16,
|
|
3910
3670
|
"imageHeight": 24,
|
|
@@ -3918,9 +3678,6 @@
|
|
|
3918
3678
|
"RAZOR_LEAF": {
|
|
3919
3679
|
"index": 160,
|
|
3920
3680
|
"animTag": "ANIM_TAG_RAZOR_LEAF",
|
|
3921
|
-
"possibleFrameSize": "32x16",
|
|
3922
|
-
"possibleFrameWidth": 32,
|
|
3923
|
-
"possibleFrameHeight": 16,
|
|
3924
3681
|
"imageSize": "32x16",
|
|
3925
3682
|
"imageWidth": 32,
|
|
3926
3683
|
"imageHeight": 16,
|
|
@@ -3932,9 +3689,6 @@
|
|
|
3932
3689
|
"NEEDLE": {
|
|
3933
3690
|
"index": 161,
|
|
3934
3691
|
"animTag": "ANIM_TAG_NEEDLE",
|
|
3935
|
-
"possibleFrameSize": "16x16",
|
|
3936
|
-
"possibleFrameWidth": 16,
|
|
3937
|
-
"possibleFrameHeight": 16,
|
|
3938
3692
|
"imageSize": "16x16",
|
|
3939
3693
|
"imageWidth": 16,
|
|
3940
3694
|
"imageHeight": 16,
|
|
@@ -3946,9 +3700,6 @@
|
|
|
3946
3700
|
"WHIRLWIND_LINES": {
|
|
3947
3701
|
"index": 162,
|
|
3948
3702
|
"animTag": "ANIM_TAG_WHIRLWIND_LINES",
|
|
3949
|
-
"possibleFrameSize": "32x16",
|
|
3950
|
-
"possibleFrameWidth": 32,
|
|
3951
|
-
"possibleFrameHeight": 16,
|
|
3952
3703
|
"imageSize": "32x48",
|
|
3953
3704
|
"imageWidth": 32,
|
|
3954
3705
|
"imageHeight": 48,
|
|
@@ -3962,9 +3713,6 @@
|
|
|
3962
3713
|
"GOLD_RING": {
|
|
3963
3714
|
"index": 163,
|
|
3964
3715
|
"animTag": "ANIM_TAG_GOLD_RING",
|
|
3965
|
-
"possibleFrameSize": "16x32",
|
|
3966
|
-
"possibleFrameWidth": 16,
|
|
3967
|
-
"possibleFrameHeight": 32,
|
|
3968
3716
|
"imageSize": "16x32",
|
|
3969
3717
|
"imageWidth": 16,
|
|
3970
3718
|
"imageHeight": 32,
|
|
@@ -3976,9 +3724,6 @@
|
|
|
3976
3724
|
"PURPLE_RING": {
|
|
3977
3725
|
"index": 164,
|
|
3978
3726
|
"animTag": "ANIM_TAG_PURPLE_RING",
|
|
3979
|
-
"possibleFrameSize": "16x32",
|
|
3980
|
-
"possibleFrameWidth": 16,
|
|
3981
|
-
"possibleFrameHeight": 32,
|
|
3982
3727
|
"imageSize": "16x32",
|
|
3983
3728
|
"imageWidth": 16,
|
|
3984
3729
|
"imageHeight": 32,
|
|
@@ -3990,9 +3735,6 @@
|
|
|
3990
3735
|
"BLUE_RING": {
|
|
3991
3736
|
"index": 165,
|
|
3992
3737
|
"animTag": "ANIM_TAG_BLUE_RING",
|
|
3993
|
-
"possibleFrameSize": "16x32",
|
|
3994
|
-
"possibleFrameWidth": 16,
|
|
3995
|
-
"possibleFrameHeight": 32,
|
|
3996
3738
|
"imageSize": "16x32",
|
|
3997
3739
|
"imageWidth": 16,
|
|
3998
3740
|
"imageHeight": 32,
|
|
@@ -4004,9 +3746,6 @@
|
|
|
4004
3746
|
"GREEN_LIGHT_WALL": {
|
|
4005
3747
|
"index": 166,
|
|
4006
3748
|
"animTag": "ANIM_TAG_GREEN_LIGHT_WALL",
|
|
4007
|
-
"possibleFrameSize": "64x64",
|
|
4008
|
-
"possibleFrameWidth": 64,
|
|
4009
|
-
"possibleFrameHeight": 64,
|
|
4010
3749
|
"imageSize": "64x64",
|
|
4011
3750
|
"imageWidth": 64,
|
|
4012
3751
|
"imageHeight": 64,
|
|
@@ -4018,9 +3757,6 @@
|
|
|
4018
3757
|
"BLUE_LIGHT_WALL": {
|
|
4019
3758
|
"index": 167,
|
|
4020
3759
|
"animTag": "ANIM_TAG_BLUE_LIGHT_WALL",
|
|
4021
|
-
"possibleFrameSize": "64x64",
|
|
4022
|
-
"possibleFrameWidth": 64,
|
|
4023
|
-
"possibleFrameHeight": 64,
|
|
4024
3760
|
"imageSize": "64x64",
|
|
4025
3761
|
"imageWidth": 64,
|
|
4026
3762
|
"imageHeight": 64,
|
|
@@ -4032,9 +3768,6 @@
|
|
|
4032
3768
|
"RED_LIGHT_WALL": {
|
|
4033
3769
|
"index": 168,
|
|
4034
3770
|
"animTag": "ANIM_TAG_RED_LIGHT_WALL",
|
|
4035
|
-
"possibleFrameSize": "64x64",
|
|
4036
|
-
"possibleFrameWidth": 64,
|
|
4037
|
-
"possibleFrameHeight": 64,
|
|
4038
3771
|
"imageSize": "64x64",
|
|
4039
3772
|
"imageWidth": 64,
|
|
4040
3773
|
"imageHeight": 64,
|
|
@@ -4046,9 +3779,6 @@
|
|
|
4046
3779
|
"GRAY_LIGHT_WALL": {
|
|
4047
3780
|
"index": 169,
|
|
4048
3781
|
"animTag": "ANIM_TAG_GRAY_LIGHT_WALL",
|
|
4049
|
-
"possibleFrameSize": "64x64",
|
|
4050
|
-
"possibleFrameWidth": 64,
|
|
4051
|
-
"possibleFrameHeight": 64,
|
|
4052
3782
|
"imageSize": "64x64",
|
|
4053
3783
|
"imageWidth": 64,
|
|
4054
3784
|
"imageHeight": 64,
|
|
@@ -4060,9 +3790,6 @@
|
|
|
4060
3790
|
"ORANGE_LIGHT_WALL": {
|
|
4061
3791
|
"index": 170,
|
|
4062
3792
|
"animTag": "ANIM_TAG_ORANGE_LIGHT_WALL",
|
|
4063
|
-
"possibleFrameSize": "64x64",
|
|
4064
|
-
"possibleFrameWidth": 64,
|
|
4065
|
-
"possibleFrameHeight": 64,
|
|
4066
3793
|
"imageSize": "64x64",
|
|
4067
3794
|
"imageWidth": 64,
|
|
4068
3795
|
"imageHeight": 64,
|
|
@@ -4074,9 +3801,6 @@
|
|
|
4074
3801
|
"BLACK_BALL_2": {
|
|
4075
3802
|
"index": 171,
|
|
4076
3803
|
"animTag": "ANIM_TAG_BLACK_BALL_2",
|
|
4077
|
-
"possibleFrameSize": "16x16",
|
|
4078
|
-
"possibleFrameWidth": 16,
|
|
4079
|
-
"possibleFrameHeight": 16,
|
|
4080
3804
|
"imageSize": "16x16",
|
|
4081
3805
|
"imageWidth": 16,
|
|
4082
3806
|
"imageHeight": 16,
|
|
@@ -4088,9 +3812,6 @@
|
|
|
4088
3812
|
"PURPLE_GAS_CLOUD": {
|
|
4089
3813
|
"index": 172,
|
|
4090
3814
|
"animTag": "ANIM_TAG_PURPLE_GAS_CLOUD",
|
|
4091
|
-
"possibleFrameSize": "32x16",
|
|
4092
|
-
"possibleFrameWidth": 32,
|
|
4093
|
-
"possibleFrameHeight": 16,
|
|
4094
3815
|
"imageSize": "32x32",
|
|
4095
3816
|
"imageWidth": 32,
|
|
4096
3817
|
"imageHeight": 32,
|
|
@@ -4103,9 +3824,6 @@
|
|
|
4103
3824
|
"SPARK_H": {
|
|
4104
3825
|
"index": 173,
|
|
4105
3826
|
"animTag": "ANIM_TAG_SPARK_H",
|
|
4106
|
-
"possibleFrameSize": "32x16",
|
|
4107
|
-
"possibleFrameWidth": 32,
|
|
4108
|
-
"possibleFrameHeight": 16,
|
|
4109
3827
|
"imageSize": "32x32",
|
|
4110
3828
|
"imageWidth": 32,
|
|
4111
3829
|
"imageHeight": 32,
|
|
@@ -4118,9 +3836,6 @@
|
|
|
4118
3836
|
"YELLOW_STAR": {
|
|
4119
3837
|
"index": 174,
|
|
4120
3838
|
"animTag": "ANIM_TAG_YELLOW_STAR",
|
|
4121
|
-
"possibleFrameSize": "32x32",
|
|
4122
|
-
"possibleFrameWidth": 32,
|
|
4123
|
-
"possibleFrameHeight": 32,
|
|
4124
3839
|
"imageSize": "32x32",
|
|
4125
3840
|
"imageWidth": 32,
|
|
4126
3841
|
"imageHeight": 32,
|
|
@@ -4132,9 +3847,6 @@
|
|
|
4132
3847
|
"LARGE_FRESH_EGG": {
|
|
4133
3848
|
"index": 175,
|
|
4134
3849
|
"animTag": "ANIM_TAG_LARGE_FRESH_EGG",
|
|
4135
|
-
"possibleFrameSize": "16x16",
|
|
4136
|
-
"possibleFrameWidth": 16,
|
|
4137
|
-
"possibleFrameHeight": 16,
|
|
4138
3850
|
"imageSize": "16x16",
|
|
4139
3851
|
"imageWidth": 16,
|
|
4140
3852
|
"imageHeight": 16,
|
|
@@ -4146,9 +3858,6 @@
|
|
|
4146
3858
|
"SHADOW_BALL": {
|
|
4147
3859
|
"index": 176,
|
|
4148
3860
|
"animTag": "ANIM_TAG_SHADOW_BALL",
|
|
4149
|
-
"possibleFrameSize": "32x32",
|
|
4150
|
-
"possibleFrameWidth": 32,
|
|
4151
|
-
"possibleFrameHeight": 32,
|
|
4152
3861
|
"imageSize": "32x32",
|
|
4153
3862
|
"imageWidth": 32,
|
|
4154
3863
|
"imageHeight": 32,
|
|
@@ -4160,9 +3869,6 @@
|
|
|
4160
3869
|
"LICK": {
|
|
4161
3870
|
"index": 177,
|
|
4162
3871
|
"animTag": "ANIM_TAG_LICK",
|
|
4163
|
-
"possibleFrameSize": "16x32",
|
|
4164
|
-
"possibleFrameWidth": 16,
|
|
4165
|
-
"possibleFrameHeight": 32,
|
|
4166
3872
|
"imageSize": "16x160",
|
|
4167
3873
|
"imageWidth": 16,
|
|
4168
3874
|
"imageHeight": 160,
|
|
@@ -4178,9 +3884,6 @@
|
|
|
4178
3884
|
"VOID_LINES": {
|
|
4179
3885
|
"index": 178,
|
|
4180
3886
|
"animTag": "ANIM_TAG_VOID_LINES",
|
|
4181
|
-
"possibleFrameSize": "64x64",
|
|
4182
|
-
"possibleFrameWidth": 64,
|
|
4183
|
-
"possibleFrameHeight": 64,
|
|
4184
3887
|
"imageSize": "64x64",
|
|
4185
3888
|
"imageWidth": 64,
|
|
4186
3889
|
"imageHeight": 64,
|
|
@@ -4192,9 +3895,6 @@
|
|
|
4192
3895
|
"STRING": {
|
|
4193
3896
|
"index": 179,
|
|
4194
3897
|
"animTag": "ANIM_TAG_STRING",
|
|
4195
|
-
"possibleFrameSize": "64x32",
|
|
4196
|
-
"possibleFrameWidth": 64,
|
|
4197
|
-
"possibleFrameHeight": 32,
|
|
4198
3898
|
"imageSize": "64x32",
|
|
4199
3899
|
"imageWidth": 64,
|
|
4200
3900
|
"imageHeight": 32,
|
|
@@ -4206,9 +3906,6 @@
|
|
|
4206
3906
|
"WEB_THREAD": {
|
|
4207
3907
|
"index": 180,
|
|
4208
3908
|
"animTag": "ANIM_TAG_WEB_THREAD",
|
|
4209
|
-
"possibleFrameSize": "8x8",
|
|
4210
|
-
"possibleFrameWidth": 8,
|
|
4211
|
-
"possibleFrameHeight": 8,
|
|
4212
3909
|
"imageSize": "8x8",
|
|
4213
3910
|
"imageWidth": 8,
|
|
4214
3911
|
"imageHeight": 8,
|
|
@@ -4220,9 +3917,6 @@
|
|
|
4220
3917
|
"SPIDER_WEB": {
|
|
4221
3918
|
"index": 181,
|
|
4222
3919
|
"animTag": "ANIM_TAG_SPIDER_WEB",
|
|
4223
|
-
"possibleFrameSize": "64x64",
|
|
4224
|
-
"possibleFrameWidth": 64,
|
|
4225
|
-
"possibleFrameHeight": 64,
|
|
4226
3920
|
"imageSize": "64x64",
|
|
4227
3921
|
"imageWidth": 64,
|
|
4228
3922
|
"imageHeight": 64,
|
|
@@ -4257,9 +3951,6 @@
|
|
|
4257
3951
|
"SLASH": {
|
|
4258
3952
|
"index": 183,
|
|
4259
3953
|
"animTag": "ANIM_TAG_SLASH",
|
|
4260
|
-
"possibleFrameSize": "32x32",
|
|
4261
|
-
"possibleFrameWidth": 32,
|
|
4262
|
-
"possibleFrameHeight": 32,
|
|
4263
3954
|
"imageSize": "32x128",
|
|
4264
3955
|
"imageWidth": 32,
|
|
4265
3956
|
"imageHeight": 128,
|
|
@@ -4274,9 +3965,6 @@
|
|
|
4274
3965
|
"FOCUS_ENERGY": {
|
|
4275
3966
|
"index": 184,
|
|
4276
3967
|
"animTag": "ANIM_TAG_FOCUS_ENERGY",
|
|
4277
|
-
"possibleFrameSize": "16x32",
|
|
4278
|
-
"possibleFrameWidth": 16,
|
|
4279
|
-
"possibleFrameHeight": 32,
|
|
4280
3968
|
"imageSize": "16x128",
|
|
4281
3969
|
"imageWidth": 16,
|
|
4282
3970
|
"imageHeight": 128,
|
|
@@ -4291,9 +3979,6 @@
|
|
|
4291
3979
|
"SPHERE_TO_CUBE": {
|
|
4292
3980
|
"index": 185,
|
|
4293
3981
|
"animTag": "ANIM_TAG_SPHERE_TO_CUBE",
|
|
4294
|
-
"possibleFrameSize": "32x32",
|
|
4295
|
-
"possibleFrameWidth": 32,
|
|
4296
|
-
"possibleFrameHeight": 32,
|
|
4297
3982
|
"imageSize": "32x160",
|
|
4298
3983
|
"imageWidth": 32,
|
|
4299
3984
|
"imageHeight": 160,
|
|
@@ -4309,9 +3994,6 @@
|
|
|
4309
3994
|
"TENDRILS": {
|
|
4310
3995
|
"index": 186,
|
|
4311
3996
|
"animTag": "ANIM_TAG_TENDRILS",
|
|
4312
|
-
"possibleFrameSize": "64x32",
|
|
4313
|
-
"possibleFrameWidth": 64,
|
|
4314
|
-
"possibleFrameHeight": 32,
|
|
4315
3997
|
"imageSize": "64x128",
|
|
4316
3998
|
"imageWidth": 64,
|
|
4317
3999
|
"imageHeight": 128,
|
|
@@ -4326,9 +4008,6 @@
|
|
|
4326
4008
|
"EYE": {
|
|
4327
4009
|
"index": 187,
|
|
4328
4010
|
"animTag": "ANIM_TAG_EYE",
|
|
4329
|
-
"possibleFrameSize": "64x64",
|
|
4330
|
-
"possibleFrameWidth": 64,
|
|
4331
|
-
"possibleFrameHeight": 64,
|
|
4332
4011
|
"imageSize": "64x64",
|
|
4333
4012
|
"imageWidth": 64,
|
|
4334
4013
|
"imageHeight": 64,
|
|
@@ -4340,9 +4019,6 @@
|
|
|
4340
4019
|
"WHITE_SHADOW": {
|
|
4341
4020
|
"index": 188,
|
|
4342
4021
|
"animTag": "ANIM_TAG_WHITE_SHADOW",
|
|
4343
|
-
"possibleFrameSize": "64x32",
|
|
4344
|
-
"possibleFrameWidth": 64,
|
|
4345
|
-
"possibleFrameHeight": 32,
|
|
4346
4022
|
"imageSize": "64x32",
|
|
4347
4023
|
"imageWidth": 64,
|
|
4348
4024
|
"imageHeight": 32,
|
|
@@ -4354,9 +4030,6 @@
|
|
|
4354
4030
|
"TEAL_ALERT": {
|
|
4355
4031
|
"index": 189,
|
|
4356
4032
|
"animTag": "ANIM_TAG_TEAL_ALERT",
|
|
4357
|
-
"possibleFrameSize": "32x32",
|
|
4358
|
-
"possibleFrameWidth": 32,
|
|
4359
|
-
"possibleFrameHeight": 32,
|
|
4360
4033
|
"imageSize": "32x32",
|
|
4361
4034
|
"imageWidth": 32,
|
|
4362
4035
|
"imageHeight": 32,
|
|
@@ -4368,9 +4041,6 @@
|
|
|
4368
4041
|
"OPENING_EYE": {
|
|
4369
4042
|
"index": 190,
|
|
4370
4043
|
"animTag": "ANIM_TAG_OPENING_EYE",
|
|
4371
|
-
"possibleFrameSize": "32x32",
|
|
4372
|
-
"possibleFrameWidth": 32,
|
|
4373
|
-
"possibleFrameHeight": 32,
|
|
4374
4044
|
"imageSize": "32x128",
|
|
4375
4045
|
"imageWidth": 32,
|
|
4376
4046
|
"imageHeight": 128,
|
|
@@ -4385,9 +4055,6 @@
|
|
|
4385
4055
|
"ROUND_WHITE_HALO": {
|
|
4386
4056
|
"index": 191,
|
|
4387
4057
|
"animTag": "ANIM_TAG_ROUND_WHITE_HALO",
|
|
4388
|
-
"possibleFrameSize": "64x64",
|
|
4389
|
-
"possibleFrameWidth": 64,
|
|
4390
|
-
"possibleFrameHeight": 64,
|
|
4391
4058
|
"imageSize": "64x64",
|
|
4392
4059
|
"imageWidth": 64,
|
|
4393
4060
|
"imageHeight": 64,
|
|
@@ -4399,9 +4066,6 @@
|
|
|
4399
4066
|
"FANG_ATTACK": {
|
|
4400
4067
|
"index": 192,
|
|
4401
4068
|
"animTag": "ANIM_TAG_FANG_ATTACK",
|
|
4402
|
-
"possibleFrameSize": "32x32",
|
|
4403
|
-
"possibleFrameWidth": 32,
|
|
4404
|
-
"possibleFrameHeight": 32,
|
|
4405
4069
|
"imageSize": "32x128",
|
|
4406
4070
|
"imageWidth": 32,
|
|
4407
4071
|
"imageHeight": 128,
|
|
@@ -4416,9 +4080,6 @@
|
|
|
4416
4080
|
"PURPLE_HAND_OUTLINE": {
|
|
4417
4081
|
"index": 193,
|
|
4418
4082
|
"animTag": "ANIM_TAG_PURPLE_HAND_OUTLINE",
|
|
4419
|
-
"possibleFrameSize": "32x32",
|
|
4420
|
-
"possibleFrameWidth": 32,
|
|
4421
|
-
"possibleFrameHeight": 32,
|
|
4422
4083
|
"imageSize": "32x32",
|
|
4423
4084
|
"imageWidth": 32,
|
|
4424
4085
|
"imageHeight": 32,
|
|
@@ -4430,9 +4091,6 @@
|
|
|
4430
4091
|
"MOON": {
|
|
4431
4092
|
"index": 194,
|
|
4432
4093
|
"animTag": "ANIM_TAG_MOON",
|
|
4433
|
-
"possibleFrameSize": "64x64",
|
|
4434
|
-
"possibleFrameWidth": 64,
|
|
4435
|
-
"possibleFrameHeight": 64,
|
|
4436
4094
|
"imageSize": "64x64",
|
|
4437
4095
|
"imageWidth": 64,
|
|
4438
4096
|
"imageHeight": 64,
|
|
@@ -4444,9 +4102,6 @@
|
|
|
4444
4102
|
"GREEN_SPARKLE": {
|
|
4445
4103
|
"index": 195,
|
|
4446
4104
|
"animTag": "ANIM_TAG_GREEN_SPARKLE",
|
|
4447
|
-
"possibleFrameSize": "16x16",
|
|
4448
|
-
"possibleFrameWidth": 16,
|
|
4449
|
-
"possibleFrameHeight": 16,
|
|
4450
4105
|
"imageSize": "16x64",
|
|
4451
4106
|
"imageWidth": 16,
|
|
4452
4107
|
"imageHeight": 64,
|
|
@@ -4461,9 +4116,6 @@
|
|
|
4461
4116
|
"SPIRAL": {
|
|
4462
4117
|
"index": 196,
|
|
4463
4118
|
"animTag": "ANIM_TAG_SPIRAL",
|
|
4464
|
-
"possibleFrameSize": "64x64",
|
|
4465
|
-
"possibleFrameWidth": 64,
|
|
4466
|
-
"possibleFrameHeight": 64,
|
|
4467
4119
|
"imageSize": "64x64",
|
|
4468
4120
|
"imageWidth": 64,
|
|
4469
4121
|
"imageHeight": 64,
|
|
@@ -4475,9 +4127,6 @@
|
|
|
4475
4127
|
"SNORE_Z": {
|
|
4476
4128
|
"index": 197,
|
|
4477
4129
|
"animTag": "ANIM_TAG_SNORE_Z",
|
|
4478
|
-
"possibleFrameSize": "32x32",
|
|
4479
|
-
"possibleFrameWidth": 32,
|
|
4480
|
-
"possibleFrameHeight": 32,
|
|
4481
4130
|
"imageSize": "32x32",
|
|
4482
4131
|
"imageWidth": 32,
|
|
4483
4132
|
"imageHeight": 32,
|
|
@@ -4489,9 +4138,6 @@
|
|
|
4489
4138
|
"EXPLOSION": {
|
|
4490
4139
|
"index": 198,
|
|
4491
4140
|
"animTag": "ANIM_TAG_EXPLOSION",
|
|
4492
|
-
"possibleFrameSize": "32x32",
|
|
4493
|
-
"possibleFrameWidth": 32,
|
|
4494
|
-
"possibleFrameHeight": 32,
|
|
4495
4141
|
"imageSize": "32x128",
|
|
4496
4142
|
"imageWidth": 32,
|
|
4497
4143
|
"imageHeight": 128,
|
|
@@ -4506,9 +4152,6 @@
|
|
|
4506
4152
|
"NAIL": {
|
|
4507
4153
|
"index": 199,
|
|
4508
4154
|
"animTag": "ANIM_TAG_NAIL",
|
|
4509
|
-
"possibleFrameSize": "32x16",
|
|
4510
|
-
"possibleFrameWidth": 32,
|
|
4511
|
-
"possibleFrameHeight": 16,
|
|
4512
4155
|
"imageSize": "32x64",
|
|
4513
4156
|
"imageWidth": 32,
|
|
4514
4157
|
"imageHeight": 64,
|
|
@@ -4523,9 +4166,6 @@
|
|
|
4523
4166
|
"GHOSTLY_SPIRIT": {
|
|
4524
4167
|
"index": 200,
|
|
4525
4168
|
"animTag": "ANIM_TAG_GHOSTLY_SPIRIT",
|
|
4526
|
-
"possibleFrameSize": "32x32",
|
|
4527
|
-
"possibleFrameWidth": 32,
|
|
4528
|
-
"possibleFrameHeight": 32,
|
|
4529
4169
|
"imageSize": "32x32",
|
|
4530
4170
|
"imageWidth": 32,
|
|
4531
4171
|
"imageHeight": 32,
|
|
@@ -4537,9 +4177,6 @@
|
|
|
4537
4177
|
"WARM_ROCK": {
|
|
4538
4178
|
"index": 201,
|
|
4539
4179
|
"animTag": "ANIM_TAG_WARM_ROCK",
|
|
4540
|
-
"possibleFrameSize": "32x32",
|
|
4541
|
-
"possibleFrameWidth": 32,
|
|
4542
|
-
"possibleFrameHeight": 32,
|
|
4543
4180
|
"imageSize": "32x168",
|
|
4544
4181
|
"imageWidth": 32,
|
|
4545
4182
|
"imageHeight": 168,
|
|
@@ -4565,9 +4202,6 @@
|
|
|
4565
4202
|
"BREAKING_EGG": {
|
|
4566
4203
|
"index": 202,
|
|
4567
4204
|
"animTag": "ANIM_TAG_BREAKING_EGG",
|
|
4568
|
-
"possibleFrameSize": "32x32",
|
|
4569
|
-
"possibleFrameWidth": 32,
|
|
4570
|
-
"possibleFrameHeight": 32,
|
|
4571
4205
|
"imageSize": "32x96",
|
|
4572
4206
|
"imageWidth": 32,
|
|
4573
4207
|
"imageHeight": 96,
|
|
@@ -4581,9 +4215,6 @@
|
|
|
4581
4215
|
"THIN_RING": {
|
|
4582
4216
|
"index": 203,
|
|
4583
4217
|
"animTag": "ANIM_TAG_THIN_RING",
|
|
4584
|
-
"possibleFrameSize": "64x64",
|
|
4585
|
-
"possibleFrameWidth": 64,
|
|
4586
|
-
"possibleFrameHeight": 64,
|
|
4587
4218
|
"imageSize": "64x64",
|
|
4588
4219
|
"imageWidth": 64,
|
|
4589
4220
|
"imageHeight": 64,
|
|
@@ -4612,9 +4243,6 @@
|
|
|
4612
4243
|
"BELL": {
|
|
4613
4244
|
"index": 205,
|
|
4614
4245
|
"animTag": "ANIM_TAG_BELL",
|
|
4615
|
-
"possibleFrameSize": "32x32",
|
|
4616
|
-
"possibleFrameWidth": 32,
|
|
4617
|
-
"possibleFrameHeight": 32,
|
|
4618
4246
|
"imageSize": "32x96",
|
|
4619
4247
|
"imageWidth": 32,
|
|
4620
4248
|
"imageHeight": 96,
|
|
@@ -4628,9 +4256,6 @@
|
|
|
4628
4256
|
"MUSIC_NOTES_2": {
|
|
4629
4257
|
"index": 206,
|
|
4630
4258
|
"animTag": "ANIM_TAG_MUSIC_NOTES_2",
|
|
4631
|
-
"possibleFrameSize": "16x16",
|
|
4632
|
-
"possibleFrameWidth": 16,
|
|
4633
|
-
"possibleFrameHeight": 16,
|
|
4634
4259
|
"imageSize": "16x256",
|
|
4635
4260
|
"imageWidth": 16,
|
|
4636
4261
|
"imageHeight": 256,
|
|
@@ -4657,9 +4282,6 @@
|
|
|
4657
4282
|
"SPEED_DUST": {
|
|
4658
4283
|
"index": 207,
|
|
4659
4284
|
"animTag": "ANIM_TAG_SPEED_DUST",
|
|
4660
|
-
"possibleFrameSize": "16x16",
|
|
4661
|
-
"possibleFrameWidth": 16,
|
|
4662
|
-
"possibleFrameHeight": 16,
|
|
4663
4285
|
"imageSize": "16x48",
|
|
4664
4286
|
"imageWidth": 16,
|
|
4665
4287
|
"imageHeight": 48,
|
|
@@ -4673,9 +4295,6 @@
|
|
|
4673
4295
|
"TORN_METAL": {
|
|
4674
4296
|
"index": 208,
|
|
4675
4297
|
"animTag": "ANIM_TAG_TORN_METAL",
|
|
4676
|
-
"possibleFrameSize": "32x32",
|
|
4677
|
-
"possibleFrameWidth": 32,
|
|
4678
|
-
"possibleFrameHeight": 32,
|
|
4679
4298
|
"imageSize": "128x32",
|
|
4680
4299
|
"imageWidth": 128,
|
|
4681
4300
|
"imageHeight": 32,
|
|
@@ -4690,9 +4309,6 @@
|
|
|
4690
4309
|
"THOUGHT_BUBBLE": {
|
|
4691
4310
|
"index": 209,
|
|
4692
4311
|
"animTag": "ANIM_TAG_THOUGHT_BUBBLE",
|
|
4693
|
-
"possibleFrameSize": "32x32",
|
|
4694
|
-
"possibleFrameWidth": 32,
|
|
4695
|
-
"possibleFrameHeight": 32,
|
|
4696
4312
|
"imageSize": "32x128",
|
|
4697
4313
|
"imageWidth": 32,
|
|
4698
4314
|
"imageHeight": 128,
|
|
@@ -4707,9 +4323,6 @@
|
|
|
4707
4323
|
"MAGENTA_HEART": {
|
|
4708
4324
|
"index": 210,
|
|
4709
4325
|
"animTag": "ANIM_TAG_MAGENTA_HEART",
|
|
4710
|
-
"possibleFrameSize": "16x16",
|
|
4711
|
-
"possibleFrameWidth": 16,
|
|
4712
|
-
"possibleFrameHeight": 16,
|
|
4713
4326
|
"imageSize": "16x16",
|
|
4714
4327
|
"imageWidth": 16,
|
|
4715
4328
|
"imageHeight": 16,
|
|
@@ -4721,9 +4334,6 @@
|
|
|
4721
4334
|
"ELECTRIC_ORBS": {
|
|
4722
4335
|
"index": 211,
|
|
4723
4336
|
"animTag": "ANIM_TAG_ELECTRIC_ORBS",
|
|
4724
|
-
"possibleFrameSize": "8x8",
|
|
4725
|
-
"possibleFrameWidth": 8,
|
|
4726
|
-
"possibleFrameHeight": 8,
|
|
4727
4337
|
"imageSize": "8x32",
|
|
4728
4338
|
"imageWidth": 8,
|
|
4729
4339
|
"imageHeight": 32,
|
|
@@ -4738,9 +4348,6 @@
|
|
|
4738
4348
|
"CIRCLE_OF_LIGHT": {
|
|
4739
4349
|
"index": 212,
|
|
4740
4350
|
"animTag": "ANIM_TAG_CIRCLE_OF_LIGHT",
|
|
4741
|
-
"possibleFrameSize": "64x64",
|
|
4742
|
-
"possibleFrameWidth": 64,
|
|
4743
|
-
"possibleFrameHeight": 64,
|
|
4744
4351
|
"imageSize": "64x64",
|
|
4745
4352
|
"imageWidth": 64,
|
|
4746
4353
|
"imageHeight": 64,
|
|
@@ -4752,9 +4359,6 @@
|
|
|
4752
4359
|
"ELECTRICITY": {
|
|
4753
4360
|
"index": 213,
|
|
4754
4361
|
"animTag": "ANIM_TAG_ELECTRICITY",
|
|
4755
|
-
"possibleFrameSize": "32x32",
|
|
4756
|
-
"possibleFrameWidth": 32,
|
|
4757
|
-
"possibleFrameHeight": 32,
|
|
4758
4362
|
"imageSize": "32x128",
|
|
4759
4363
|
"imageWidth": 32,
|
|
4760
4364
|
"imageHeight": 128,
|
|
@@ -4769,9 +4373,6 @@
|
|
|
4769
4373
|
"FINGER_2": {
|
|
4770
4374
|
"index": 214,
|
|
4771
4375
|
"animTag": "ANIM_TAG_FINGER_2",
|
|
4772
|
-
"possibleFrameSize": "32x32",
|
|
4773
|
-
"possibleFrameWidth": 32,
|
|
4774
|
-
"possibleFrameHeight": 32,
|
|
4775
4376
|
"imageSize": "32x96",
|
|
4776
4377
|
"imageWidth": 32,
|
|
4777
4378
|
"imageHeight": 96,
|
|
@@ -4785,9 +4386,6 @@
|
|
|
4785
4386
|
"MOVEMENT_WAVES": {
|
|
4786
4387
|
"index": 215,
|
|
4787
4388
|
"animTag": "ANIM_TAG_MOVEMENT_WAVES",
|
|
4788
|
-
"possibleFrameSize": "32x32",
|
|
4789
|
-
"possibleFrameWidth": 32,
|
|
4790
|
-
"possibleFrameHeight": 32,
|
|
4791
4389
|
"imageSize": "32x96",
|
|
4792
4390
|
"imageWidth": 32,
|
|
4793
4391
|
"imageHeight": 96,
|
|
@@ -4801,9 +4399,6 @@
|
|
|
4801
4399
|
"RED_HEART": {
|
|
4802
4400
|
"index": 216,
|
|
4803
4401
|
"animTag": "ANIM_TAG_RED_HEART",
|
|
4804
|
-
"possibleFrameSize": "16x16",
|
|
4805
|
-
"possibleFrameWidth": 16,
|
|
4806
|
-
"possibleFrameHeight": 16,
|
|
4807
4402
|
"imageSize": "16x16",
|
|
4808
4403
|
"imageWidth": 16,
|
|
4809
4404
|
"imageHeight": 16,
|
|
@@ -4815,9 +4410,6 @@
|
|
|
4815
4410
|
"RED_ORB": {
|
|
4816
4411
|
"index": 217,
|
|
4817
4412
|
"animTag": "ANIM_TAG_RED_ORB",
|
|
4818
|
-
"possibleFrameSize": "16x16",
|
|
4819
|
-
"possibleFrameWidth": 16,
|
|
4820
|
-
"possibleFrameHeight": 16,
|
|
4821
4413
|
"imageSize": "16x16",
|
|
4822
4414
|
"imageWidth": 16,
|
|
4823
4415
|
"imageHeight": 16,
|
|
@@ -4829,9 +4421,6 @@
|
|
|
4829
4421
|
"EYE_SPARKLE": {
|
|
4830
4422
|
"index": 218,
|
|
4831
4423
|
"animTag": "ANIM_TAG_EYE_SPARKLE",
|
|
4832
|
-
"possibleFrameSize": "16x16",
|
|
4833
|
-
"possibleFrameWidth": 16,
|
|
4834
|
-
"possibleFrameHeight": 16,
|
|
4835
4424
|
"imageSize": "16x64",
|
|
4836
4425
|
"imageWidth": 16,
|
|
4837
4426
|
"imageHeight": 64,
|
|
@@ -4846,9 +4435,6 @@
|
|
|
4846
4435
|
"PINK_HEART": {
|
|
4847
4436
|
"index": 219,
|
|
4848
4437
|
"animTag": "ANIM_TAG_PINK_HEART",
|
|
4849
|
-
"possibleFrameSize": "16x16",
|
|
4850
|
-
"possibleFrameWidth": 16,
|
|
4851
|
-
"possibleFrameHeight": 16,
|
|
4852
4438
|
"imageSize": "16x16",
|
|
4853
4439
|
"imageWidth": 16,
|
|
4854
4440
|
"imageHeight": 16,
|
|
@@ -4860,9 +4446,6 @@
|
|
|
4860
4446
|
"ANGEL": {
|
|
4861
4447
|
"index": 220,
|
|
4862
4448
|
"animTag": "ANIM_TAG_ANGEL",
|
|
4863
|
-
"possibleFrameSize": "32x32",
|
|
4864
|
-
"possibleFrameWidth": 32,
|
|
4865
|
-
"possibleFrameHeight": 32,
|
|
4866
4449
|
"imageSize": "32x32",
|
|
4867
4450
|
"imageWidth": 32,
|
|
4868
4451
|
"imageHeight": 32,
|
|
@@ -4874,9 +4457,6 @@
|
|
|
4874
4457
|
"DEVIL": {
|
|
4875
4458
|
"index": 221,
|
|
4876
4459
|
"animTag": "ANIM_TAG_DEVIL",
|
|
4877
|
-
"possibleFrameSize": "32x32",
|
|
4878
|
-
"possibleFrameWidth": 32,
|
|
4879
|
-
"possibleFrameHeight": 32,
|
|
4880
4460
|
"imageSize": "32x64",
|
|
4881
4461
|
"imageWidth": 32,
|
|
4882
4462
|
"imageHeight": 64,
|
|
@@ -4889,9 +4469,6 @@
|
|
|
4889
4469
|
"SWIPE": {
|
|
4890
4470
|
"index": 222,
|
|
4891
4471
|
"animTag": "ANIM_TAG_SWIPE",
|
|
4892
|
-
"possibleFrameSize": "32x32",
|
|
4893
|
-
"possibleFrameWidth": 32,
|
|
4894
|
-
"possibleFrameHeight": 32,
|
|
4895
4472
|
"imageSize": "32x160",
|
|
4896
4473
|
"imageWidth": 32,
|
|
4897
4474
|
"imageHeight": 160,
|
|
@@ -4908,9 +4485,6 @@
|
|
|
4908
4485
|
"ROOTS": {
|
|
4909
4486
|
"index": 223,
|
|
4910
4487
|
"animTag": "ANIM_TAG_ROOTS",
|
|
4911
|
-
"possibleFrameSize": "32x32",
|
|
4912
|
-
"possibleFrameWidth": 32,
|
|
4913
|
-
"possibleFrameHeight": 32,
|
|
4914
4488
|
"imageSize": "32x128",
|
|
4915
4489
|
"imageWidth": 32,
|
|
4916
4490
|
"imageHeight": 128,
|
|
@@ -4925,9 +4499,6 @@
|
|
|
4925
4499
|
"ITEM_BAG": {
|
|
4926
4500
|
"index": 224,
|
|
4927
4501
|
"animTag": "ANIM_TAG_ITEM_BAG",
|
|
4928
|
-
"possibleFrameSize": "32x32",
|
|
4929
|
-
"possibleFrameWidth": 32,
|
|
4930
|
-
"possibleFrameHeight": 32,
|
|
4931
4502
|
"imageSize": "32x32",
|
|
4932
4503
|
"imageWidth": 32,
|
|
4933
4504
|
"imageHeight": 32,
|
|
@@ -4939,9 +4510,6 @@
|
|
|
4939
4510
|
"JAGGED_MUSIC_NOTE": {
|
|
4940
4511
|
"index": 225,
|
|
4941
4512
|
"animTag": "ANIM_TAG_JAGGED_MUSIC_NOTE",
|
|
4942
|
-
"possibleFrameSize": "32x32",
|
|
4943
|
-
"possibleFrameWidth": 32,
|
|
4944
|
-
"possibleFrameHeight": 32,
|
|
4945
4513
|
"imageSize": "32x64",
|
|
4946
4514
|
"imageWidth": 32,
|
|
4947
4515
|
"imageHeight": 64,
|
|
@@ -4954,9 +4522,6 @@
|
|
|
4954
4522
|
"POKEBALL": {
|
|
4955
4523
|
"index": 226,
|
|
4956
4524
|
"animTag": "ANIM_TAG_POKEBALL",
|
|
4957
|
-
"possibleFrameSize": "16x16",
|
|
4958
|
-
"possibleFrameWidth": 16,
|
|
4959
|
-
"possibleFrameHeight": 16,
|
|
4960
4525
|
"imageSize": "16x16",
|
|
4961
4526
|
"imageWidth": 16,
|
|
4962
4527
|
"imageHeight": 16,
|
|
@@ -4968,9 +4533,6 @@
|
|
|
4968
4533
|
"SPOTLIGHT": {
|
|
4969
4534
|
"index": 227,
|
|
4970
4535
|
"animTag": "ANIM_TAG_SPOTLIGHT",
|
|
4971
|
-
"possibleFrameSize": "64x64",
|
|
4972
|
-
"possibleFrameWidth": 64,
|
|
4973
|
-
"possibleFrameHeight": 64,
|
|
4974
4536
|
"imageSize": "64x64",
|
|
4975
4537
|
"imageWidth": 64,
|
|
4976
4538
|
"imageHeight": 64,
|
|
@@ -4982,9 +4544,6 @@
|
|
|
4982
4544
|
"LETTER_Z": {
|
|
4983
4545
|
"index": 228,
|
|
4984
4546
|
"animTag": "ANIM_TAG_LETTER_Z",
|
|
4985
|
-
"possibleFrameSize": "32x32",
|
|
4986
|
-
"possibleFrameWidth": 32,
|
|
4987
|
-
"possibleFrameHeight": 32,
|
|
4988
4547
|
"imageSize": "32x32",
|
|
4989
4548
|
"imageWidth": 32,
|
|
4990
4549
|
"imageHeight": 32,
|
|
@@ -4996,9 +4555,6 @@
|
|
|
4996
4555
|
"RAPID_SPIN": {
|
|
4997
4556
|
"index": 229,
|
|
4998
4557
|
"animTag": "ANIM_TAG_RAPID_SPIN",
|
|
4999
|
-
"possibleFrameSize": "32x16",
|
|
5000
|
-
"possibleFrameWidth": 32,
|
|
5001
|
-
"possibleFrameHeight": 16,
|
|
5002
4558
|
"imageSize": "32x48",
|
|
5003
4559
|
"imageWidth": 32,
|
|
5004
4560
|
"imageHeight": 48,
|
|
@@ -5012,9 +4568,6 @@
|
|
|
5012
4568
|
"TRI_ATTACK_TRIANGLE": {
|
|
5013
4569
|
"index": 230,
|
|
5014
4570
|
"animTag": "ANIM_TAG_TRI_ATTACK_TRIANGLE",
|
|
5015
|
-
"possibleFrameSize": "64x64",
|
|
5016
|
-
"possibleFrameWidth": 64,
|
|
5017
|
-
"possibleFrameHeight": 64,
|
|
5018
4571
|
"imageSize": "64x64",
|
|
5019
4572
|
"imageWidth": 64,
|
|
5020
4573
|
"imageHeight": 64,
|
|
@@ -5026,9 +4579,6 @@
|
|
|
5026
4579
|
"WISP_ORB": {
|
|
5027
4580
|
"index": 231,
|
|
5028
4581
|
"animTag": "ANIM_TAG_WISP_ORB",
|
|
5029
|
-
"possibleFrameSize": "16x16",
|
|
5030
|
-
"possibleFrameWidth": 16,
|
|
5031
|
-
"possibleFrameHeight": 16,
|
|
5032
4582
|
"imageSize": "16x112",
|
|
5033
4583
|
"imageWidth": 16,
|
|
5034
4584
|
"imageHeight": 112,
|
|
@@ -5046,9 +4596,6 @@
|
|
|
5046
4596
|
"WISP_FIRE": {
|
|
5047
4597
|
"index": 232,
|
|
5048
4598
|
"animTag": "ANIM_TAG_WISP_FIRE",
|
|
5049
|
-
"possibleFrameSize": "32x32",
|
|
5050
|
-
"possibleFrameWidth": 32,
|
|
5051
|
-
"possibleFrameHeight": 32,
|
|
5052
4599
|
"imageSize": "32x128",
|
|
5053
4600
|
"imageWidth": 32,
|
|
5054
4601
|
"imageHeight": 128,
|
|
@@ -5063,9 +4610,6 @@
|
|
|
5063
4610
|
"GOLD_STARS": {
|
|
5064
4611
|
"index": 233,
|
|
5065
4612
|
"animTag": "ANIM_TAG_GOLD_STARS",
|
|
5066
|
-
"possibleFrameSize": "16x16",
|
|
5067
|
-
"possibleFrameWidth": 16,
|
|
5068
|
-
"possibleFrameHeight": 16,
|
|
5069
4613
|
"imageSize": "16x24",
|
|
5070
4614
|
"imageWidth": 16,
|
|
5071
4615
|
"imageHeight": 24,
|
|
@@ -5079,9 +4623,6 @@
|
|
|
5079
4623
|
"ECLIPSING_ORB": {
|
|
5080
4624
|
"index": 234,
|
|
5081
4625
|
"animTag": "ANIM_TAG_ECLIPSING_ORB",
|
|
5082
|
-
"possibleFrameSize": "32x32",
|
|
5083
|
-
"possibleFrameWidth": 32,
|
|
5084
|
-
"possibleFrameHeight": 32,
|
|
5085
4626
|
"imageSize": "32x128",
|
|
5086
4627
|
"imageWidth": 32,
|
|
5087
4628
|
"imageHeight": 128,
|
|
@@ -5096,9 +4637,6 @@
|
|
|
5096
4637
|
"GRAY_ORB": {
|
|
5097
4638
|
"index": 235,
|
|
5098
4639
|
"animTag": "ANIM_TAG_GRAY_ORB",
|
|
5099
|
-
"possibleFrameSize": "8x8",
|
|
5100
|
-
"possibleFrameWidth": 8,
|
|
5101
|
-
"possibleFrameHeight": 8,
|
|
5102
4640
|
"imageSize": "8x24",
|
|
5103
4641
|
"imageWidth": 8,
|
|
5104
4642
|
"imageHeight": 24,
|
|
@@ -5112,9 +4650,6 @@
|
|
|
5112
4650
|
"BLUE_ORB": {
|
|
5113
4651
|
"index": 236,
|
|
5114
4652
|
"animTag": "ANIM_TAG_BLUE_ORB",
|
|
5115
|
-
"possibleFrameSize": "8x8",
|
|
5116
|
-
"possibleFrameWidth": 8,
|
|
5117
|
-
"possibleFrameHeight": 8,
|
|
5118
4653
|
"imageSize": "8x24",
|
|
5119
4654
|
"imageWidth": 8,
|
|
5120
4655
|
"imageHeight": 24,
|
|
@@ -5128,9 +4663,6 @@
|
|
|
5128
4663
|
"RED_ORB_2": {
|
|
5129
4664
|
"index": 237,
|
|
5130
4665
|
"animTag": "ANIM_TAG_RED_ORB_2",
|
|
5131
|
-
"possibleFrameSize": "8x8",
|
|
5132
|
-
"possibleFrameWidth": 8,
|
|
5133
|
-
"possibleFrameHeight": 8,
|
|
5134
4666
|
"imageSize": "8x24",
|
|
5135
4667
|
"imageWidth": 8,
|
|
5136
4668
|
"imageHeight": 24,
|
|
@@ -5144,9 +4676,6 @@
|
|
|
5144
4676
|
"PINK_PETAL": {
|
|
5145
4677
|
"index": 238,
|
|
5146
4678
|
"animTag": "ANIM_TAG_PINK_PETAL",
|
|
5147
|
-
"possibleFrameSize": "8x8",
|
|
5148
|
-
"possibleFrameWidth": 8,
|
|
5149
|
-
"possibleFrameHeight": 8,
|
|
5150
4679
|
"imageSize": "8x32",
|
|
5151
4680
|
"imageWidth": 8,
|
|
5152
4681
|
"imageHeight": 32,
|
|
@@ -5161,9 +4690,6 @@
|
|
|
5161
4690
|
"PAIN_SPLIT": {
|
|
5162
4691
|
"index": 239,
|
|
5163
4692
|
"animTag": "ANIM_TAG_PAIN_SPLIT",
|
|
5164
|
-
"possibleFrameSize": "16x16",
|
|
5165
|
-
"possibleFrameWidth": 16,
|
|
5166
|
-
"possibleFrameHeight": 16,
|
|
5167
4693
|
"imageSize": "16x48",
|
|
5168
4694
|
"imageWidth": 16,
|
|
5169
4695
|
"imageHeight": 48,
|
|
@@ -5177,9 +4703,6 @@
|
|
|
5177
4703
|
"CONFETTI": {
|
|
5178
4704
|
"index": 240,
|
|
5179
4705
|
"animTag": "ANIM_TAG_CONFETTI",
|
|
5180
|
-
"possibleFrameSize": "8x8",
|
|
5181
|
-
"possibleFrameWidth": 8,
|
|
5182
|
-
"possibleFrameHeight": 8,
|
|
5183
4706
|
"imageSize": "8x96",
|
|
5184
4707
|
"imageWidth": 8,
|
|
5185
4708
|
"imageHeight": 96,
|
|
@@ -5202,9 +4725,6 @@
|
|
|
5202
4725
|
"GREEN_STAR": {
|
|
5203
4726
|
"index": 241,
|
|
5204
4727
|
"animTag": "ANIM_TAG_GREEN_STAR",
|
|
5205
|
-
"possibleFrameSize": "16x16",
|
|
5206
|
-
"possibleFrameWidth": 16,
|
|
5207
|
-
"possibleFrameHeight": 16,
|
|
5208
4728
|
"imageSize": "16x64",
|
|
5209
4729
|
"imageWidth": 16,
|
|
5210
4730
|
"imageHeight": 64,
|
|
@@ -5219,9 +4739,6 @@
|
|
|
5219
4739
|
"PINK_CLOUD": {
|
|
5220
4740
|
"index": 242,
|
|
5221
4741
|
"animTag": "ANIM_TAG_PINK_CLOUD",
|
|
5222
|
-
"possibleFrameSize": "32x32",
|
|
5223
|
-
"possibleFrameWidth": 32,
|
|
5224
|
-
"possibleFrameHeight": 32,
|
|
5225
4742
|
"imageSize": "32x32",
|
|
5226
4743
|
"imageWidth": 32,
|
|
5227
4744
|
"imageHeight": 32,
|
|
@@ -5233,9 +4750,6 @@
|
|
|
5233
4750
|
"SWEAT_DROP": {
|
|
5234
4751
|
"index": 243,
|
|
5235
4752
|
"animTag": "ANIM_TAG_SWEAT_DROP",
|
|
5236
|
-
"possibleFrameSize": "8x8",
|
|
5237
|
-
"possibleFrameWidth": 8,
|
|
5238
|
-
"possibleFrameHeight": 8,
|
|
5239
4753
|
"imageSize": "8x8",
|
|
5240
4754
|
"imageWidth": 8,
|
|
5241
4755
|
"imageHeight": 8,
|
|
@@ -5247,9 +4761,6 @@
|
|
|
5247
4761
|
"GUARD_RING": {
|
|
5248
4762
|
"index": 244,
|
|
5249
4763
|
"animTag": "ANIM_TAG_GUARD_RING",
|
|
5250
|
-
"possibleFrameSize": "64x32",
|
|
5251
|
-
"possibleFrameWidth": 64,
|
|
5252
|
-
"possibleFrameHeight": 32,
|
|
5253
4764
|
"imageSize": "64x32",
|
|
5254
4765
|
"imageWidth": 64,
|
|
5255
4766
|
"imageHeight": 32,
|
|
@@ -5261,9 +4772,6 @@
|
|
|
5261
4772
|
"PURPLE_SCRATCH": {
|
|
5262
4773
|
"index": 245,
|
|
5263
4774
|
"animTag": "ANIM_TAG_PURPLE_SCRATCH",
|
|
5264
|
-
"possibleFrameSize": "32x32",
|
|
5265
|
-
"possibleFrameWidth": 32,
|
|
5266
|
-
"possibleFrameHeight": 32,
|
|
5267
4775
|
"imageSize": "32x96",
|
|
5268
4776
|
"imageWidth": 32,
|
|
5269
4777
|
"imageHeight": 96,
|
|
@@ -5277,9 +4785,6 @@
|
|
|
5277
4785
|
"PURPLE_SWIPE": {
|
|
5278
4786
|
"index": 246,
|
|
5279
4787
|
"animTag": "ANIM_TAG_PURPLE_SWIPE",
|
|
5280
|
-
"possibleFrameSize": "64x64",
|
|
5281
|
-
"possibleFrameWidth": 64,
|
|
5282
|
-
"possibleFrameHeight": 64,
|
|
5283
4788
|
"imageSize": "64x128",
|
|
5284
4789
|
"imageWidth": 64,
|
|
5285
4790
|
"imageHeight": 128,
|
|
@@ -5292,9 +4797,6 @@
|
|
|
5292
4797
|
"TAG_HAND": {
|
|
5293
4798
|
"index": 247,
|
|
5294
4799
|
"animTag": "ANIM_TAG_TAG_HAND",
|
|
5295
|
-
"possibleFrameSize": "32x32",
|
|
5296
|
-
"possibleFrameWidth": 32,
|
|
5297
|
-
"possibleFrameHeight": 32,
|
|
5298
4800
|
"imageSize": "32x64",
|
|
5299
4801
|
"imageWidth": 32,
|
|
5300
4802
|
"imageHeight": 64,
|
|
@@ -5307,9 +4809,6 @@
|
|
|
5307
4809
|
"SMALL_RED_EYE": {
|
|
5308
4810
|
"index": 248,
|
|
5309
4811
|
"animTag": "ANIM_TAG_SMALL_RED_EYE",
|
|
5310
|
-
"possibleFrameSize": "8x8",
|
|
5311
|
-
"possibleFrameWidth": 8,
|
|
5312
|
-
"possibleFrameHeight": 8,
|
|
5313
4812
|
"imageSize": "8x8",
|
|
5314
4813
|
"imageWidth": 8,
|
|
5315
4814
|
"imageHeight": 8,
|
|
@@ -5320,9 +4819,6 @@
|
|
|
5320
4819
|
"HOLLOW_ORB": {
|
|
5321
4820
|
"index": 249,
|
|
5322
4821
|
"animTag": "ANIM_TAG_HOLLOW_ORB",
|
|
5323
|
-
"possibleFrameSize": "16x16",
|
|
5324
|
-
"possibleFrameWidth": 16,
|
|
5325
|
-
"possibleFrameHeight": 16,
|
|
5326
4822
|
"imageSize": "16x16",
|
|
5327
4823
|
"imageWidth": 16,
|
|
5328
4824
|
"imageHeight": 16,
|
|
@@ -5334,9 +4830,6 @@
|
|
|
5334
4830
|
"X_SIGN": {
|
|
5335
4831
|
"index": 250,
|
|
5336
4832
|
"animTag": "ANIM_TAG_X_SIGN",
|
|
5337
|
-
"possibleFrameSize": "64x64",
|
|
5338
|
-
"possibleFrameWidth": 64,
|
|
5339
|
-
"possibleFrameHeight": 64,
|
|
5340
4833
|
"imageSize": "64x64",
|
|
5341
4834
|
"imageWidth": 64,
|
|
5342
4835
|
"imageHeight": 64,
|
|
@@ -5348,9 +4841,6 @@
|
|
|
5348
4841
|
"BLUEGREEN_ORB": {
|
|
5349
4842
|
"index": 251,
|
|
5350
4843
|
"animTag": "ANIM_TAG_BLUEGREEN_ORB",
|
|
5351
|
-
"possibleFrameSize": "16x16",
|
|
5352
|
-
"possibleFrameWidth": 16,
|
|
5353
|
-
"possibleFrameHeight": 16,
|
|
5354
4844
|
"imageSize": "16x16",
|
|
5355
4845
|
"imageWidth": 16,
|
|
5356
4846
|
"imageHeight": 16,
|
|
@@ -5362,9 +4852,6 @@
|
|
|
5362
4852
|
"PAW_PRINT": {
|
|
5363
4853
|
"index": 252,
|
|
5364
4854
|
"animTag": "ANIM_TAG_PAW_PRINT",
|
|
5365
|
-
"possibleFrameSize": "32x32",
|
|
5366
|
-
"possibleFrameWidth": 32,
|
|
5367
|
-
"possibleFrameHeight": 32,
|
|
5368
4855
|
"imageSize": "32x32",
|
|
5369
4856
|
"imageWidth": 32,
|
|
5370
4857
|
"imageHeight": 32,
|
|
@@ -5376,9 +4863,6 @@
|
|
|
5376
4863
|
"PURPLE_FLAME": {
|
|
5377
4864
|
"index": 253,
|
|
5378
4865
|
"animTag": "ANIM_TAG_PURPLE_FLAME",
|
|
5379
|
-
"possibleFrameSize": "16x32",
|
|
5380
|
-
"possibleFrameWidth": 16,
|
|
5381
|
-
"possibleFrameHeight": 32,
|
|
5382
4866
|
"imageSize": "16x128",
|
|
5383
4867
|
"imageWidth": 16,
|
|
5384
4868
|
"imageHeight": 128,
|
|
@@ -5393,9 +4877,6 @@
|
|
|
5393
4877
|
"RED_BALL": {
|
|
5394
4878
|
"index": 254,
|
|
5395
4879
|
"animTag": "ANIM_TAG_RED_BALL",
|
|
5396
|
-
"possibleFrameSize": "32x32",
|
|
5397
|
-
"possibleFrameWidth": 32,
|
|
5398
|
-
"possibleFrameHeight": 32,
|
|
5399
4880
|
"imageSize": "32x32",
|
|
5400
4881
|
"imageWidth": 32,
|
|
5401
4882
|
"imageHeight": 32,
|
|
@@ -5407,9 +4888,6 @@
|
|
|
5407
4888
|
"SMELLINGSALT_EFFECT": {
|
|
5408
4889
|
"index": 255,
|
|
5409
4890
|
"animTag": "ANIM_TAG_SMELLINGSALT_EFFECT",
|
|
5410
|
-
"possibleFrameSize": "32x32",
|
|
5411
|
-
"possibleFrameWidth": 32,
|
|
5412
|
-
"possibleFrameHeight": 32,
|
|
5413
4891
|
"imageSize": "32x32",
|
|
5414
4892
|
"imageWidth": 32,
|
|
5415
4893
|
"imageHeight": 32,
|
|
@@ -5421,9 +4899,6 @@
|
|
|
5421
4899
|
"METEOR": {
|
|
5422
4900
|
"index": 256,
|
|
5423
4901
|
"animTag": "ANIM_TAG_METEOR",
|
|
5424
|
-
"possibleFrameSize": "64x64",
|
|
5425
|
-
"possibleFrameWidth": 64,
|
|
5426
|
-
"possibleFrameHeight": 64,
|
|
5427
4902
|
"imageSize": "64x64",
|
|
5428
4903
|
"imageWidth": 64,
|
|
5429
4904
|
"imageHeight": 64,
|
|
@@ -5435,9 +4910,6 @@
|
|
|
5435
4910
|
"FLAT_ROCK": {
|
|
5436
4911
|
"index": 257,
|
|
5437
4912
|
"animTag": "ANIM_TAG_FLAT_ROCK",
|
|
5438
|
-
"possibleFrameSize": "16x16",
|
|
5439
|
-
"possibleFrameWidth": 16,
|
|
5440
|
-
"possibleFrameHeight": 16,
|
|
5441
4913
|
"imageSize": "16x80",
|
|
5442
4914
|
"imageWidth": 16,
|
|
5443
4915
|
"imageHeight": 80,
|
|
@@ -5453,9 +4925,6 @@
|
|
|
5453
4925
|
"MAGNIFYING_GLASS": {
|
|
5454
4926
|
"index": 258,
|
|
5455
4927
|
"animTag": "ANIM_TAG_MAGNIFYING_GLASS",
|
|
5456
|
-
"possibleFrameSize": "32x32",
|
|
5457
|
-
"possibleFrameWidth": 32,
|
|
5458
|
-
"possibleFrameHeight": 32,
|
|
5459
4928
|
"imageSize": "32x32",
|
|
5460
4929
|
"imageWidth": 32,
|
|
5461
4930
|
"imageHeight": 32,
|
|
@@ -5467,9 +4936,6 @@
|
|
|
5467
4936
|
"BROWN_ORB": {
|
|
5468
4937
|
"index": 259,
|
|
5469
4938
|
"animTag": "ANIM_TAG_BROWN_ORB",
|
|
5470
|
-
"possibleFrameSize": "16x16",
|
|
5471
|
-
"possibleFrameWidth": 16,
|
|
5472
|
-
"possibleFrameHeight": 16,
|
|
5473
4939
|
"imageSize": "16x64",
|
|
5474
4940
|
"imageWidth": 16,
|
|
5475
4941
|
"imageHeight": 64,
|
|
@@ -5484,9 +4950,6 @@
|
|
|
5484
4950
|
"METAL_SOUND_WAVES": {
|
|
5485
4951
|
"index": 260,
|
|
5486
4952
|
"animTag": "ANIM_TAG_METAL_SOUND_WAVES",
|
|
5487
|
-
"possibleFrameSize": "32x64",
|
|
5488
|
-
"possibleFrameWidth": 32,
|
|
5489
|
-
"possibleFrameHeight": 64,
|
|
5490
4953
|
"imageSize": "32x64",
|
|
5491
4954
|
"imageWidth": 32,
|
|
5492
4955
|
"imageHeight": 64,
|
|
@@ -5498,9 +4961,6 @@
|
|
|
5498
4961
|
"FLYING_DIRT": {
|
|
5499
4962
|
"index": 261,
|
|
5500
4963
|
"animTag": "ANIM_TAG_FLYING_DIRT",
|
|
5501
|
-
"possibleFrameSize": "32x16",
|
|
5502
|
-
"possibleFrameWidth": 32,
|
|
5503
|
-
"possibleFrameHeight": 16,
|
|
5504
4964
|
"imageSize": "32x32",
|
|
5505
4965
|
"imageWidth": 32,
|
|
5506
4966
|
"imageHeight": 32,
|
|
@@ -5513,9 +4973,6 @@
|
|
|
5513
4973
|
"ICICLE_SPEAR": {
|
|
5514
4974
|
"index": 262,
|
|
5515
4975
|
"animTag": "ANIM_TAG_ICICLE_SPEAR",
|
|
5516
|
-
"possibleFrameSize": "32x32",
|
|
5517
|
-
"possibleFrameWidth": 32,
|
|
5518
|
-
"possibleFrameHeight": 32,
|
|
5519
4976
|
"imageSize": "32x32",
|
|
5520
4977
|
"imageWidth": 32,
|
|
5521
4978
|
"imageHeight": 32,
|
|
@@ -5527,9 +4984,6 @@
|
|
|
5527
4984
|
"HAIL": {
|
|
5528
4985
|
"index": 263,
|
|
5529
4986
|
"animTag": "ANIM_TAG_HAIL",
|
|
5530
|
-
"possibleFrameSize": "16x16",
|
|
5531
|
-
"possibleFrameWidth": 16,
|
|
5532
|
-
"possibleFrameHeight": 16,
|
|
5533
4987
|
"imageSize": "16x16",
|
|
5534
4988
|
"imageWidth": 16,
|
|
5535
4989
|
"imageHeight": 16,
|
|
@@ -5541,9 +4995,6 @@
|
|
|
5541
4995
|
"GLOWY_RED_ORB": {
|
|
5542
4996
|
"index": 264,
|
|
5543
4997
|
"animTag": "ANIM_TAG_GLOWY_RED_ORB",
|
|
5544
|
-
"possibleFrameSize": "8x8",
|
|
5545
|
-
"possibleFrameWidth": 8,
|
|
5546
|
-
"possibleFrameHeight": 8,
|
|
5547
4998
|
"imageSize": "8x8",
|
|
5548
4999
|
"imageWidth": 8,
|
|
5549
5000
|
"imageHeight": 8,
|
|
@@ -5555,9 +5006,6 @@
|
|
|
5555
5006
|
"GLOWY_GREEN_ORB": {
|
|
5556
5007
|
"index": 265,
|
|
5557
5008
|
"animTag": "ANIM_TAG_GLOWY_GREEN_ORB",
|
|
5558
|
-
"possibleFrameSize": "8x8",
|
|
5559
|
-
"possibleFrameWidth": 8,
|
|
5560
|
-
"possibleFrameHeight": 8,
|
|
5561
5009
|
"imageSize": "8x8",
|
|
5562
5010
|
"imageWidth": 8,
|
|
5563
5011
|
"imageHeight": 8,
|
|
@@ -5569,9 +5017,6 @@
|
|
|
5569
5017
|
"GREEN_SPIKE": {
|
|
5570
5018
|
"index": 266,
|
|
5571
5019
|
"animTag": "ANIM_TAG_GREEN_SPIKE",
|
|
5572
|
-
"possibleFrameSize": "16x16",
|
|
5573
|
-
"possibleFrameWidth": 16,
|
|
5574
|
-
"possibleFrameHeight": 16,
|
|
5575
5020
|
"imageSize": "16x16",
|
|
5576
5021
|
"imageWidth": 16,
|
|
5577
5022
|
"imageHeight": 16,
|
|
@@ -5583,9 +5028,6 @@
|
|
|
5583
5028
|
"WHITE_CIRCLE_OF_LIGHT": {
|
|
5584
5029
|
"index": 267,
|
|
5585
5030
|
"animTag": "ANIM_TAG_WHITE_CIRCLE_OF_LIGHT",
|
|
5586
|
-
"possibleFrameSize": "64x64",
|
|
5587
|
-
"possibleFrameWidth": 64,
|
|
5588
|
-
"possibleFrameHeight": 64,
|
|
5589
5031
|
"imageSize": "64x64",
|
|
5590
5032
|
"imageWidth": 64,
|
|
5591
5033
|
"imageHeight": 64,
|
|
@@ -5597,9 +5039,6 @@
|
|
|
5597
5039
|
"GLOWY_BLUE_ORB": {
|
|
5598
5040
|
"index": 268,
|
|
5599
5041
|
"animTag": "ANIM_TAG_GLOWY_BLUE_ORB",
|
|
5600
|
-
"possibleFrameSize": "8x8",
|
|
5601
|
-
"possibleFrameWidth": 8,
|
|
5602
|
-
"possibleFrameHeight": 8,
|
|
5603
5042
|
"imageSize": "8x8",
|
|
5604
5043
|
"imageWidth": 8,
|
|
5605
5044
|
"imageHeight": 8,
|
|
@@ -5611,9 +5050,6 @@
|
|
|
5611
5050
|
"SAFARI_BAIT": {
|
|
5612
5051
|
"index": 269,
|
|
5613
5052
|
"animTag": "ANIM_TAG_SAFARI_BAIT",
|
|
5614
|
-
"possibleFrameSize": "16x16",
|
|
5615
|
-
"possibleFrameWidth": 16,
|
|
5616
|
-
"possibleFrameHeight": 16,
|
|
5617
5053
|
"imageSize": "16x16",
|
|
5618
5054
|
"imageWidth": 16,
|
|
5619
5055
|
"imageHeight": 16,
|
|
@@ -5625,9 +5061,6 @@
|
|
|
5625
5061
|
"WHITE_FEATHER": {
|
|
5626
5062
|
"index": 270,
|
|
5627
5063
|
"animTag": "ANIM_TAG_WHITE_FEATHER",
|
|
5628
|
-
"possibleFrameSize": "32x32",
|
|
5629
|
-
"possibleFrameWidth": 32,
|
|
5630
|
-
"possibleFrameHeight": 32,
|
|
5631
5064
|
"imageSize": "32x64",
|
|
5632
5065
|
"imageWidth": 32,
|
|
5633
5066
|
"imageHeight": 64,
|
|
@@ -5639,9 +5072,6 @@
|
|
|
5639
5072
|
"SPARKLE_6": {
|
|
5640
5073
|
"index": 271,
|
|
5641
5074
|
"animTag": "ANIM_TAG_SPARKLE_6",
|
|
5642
|
-
"possibleFrameSize": "16x16",
|
|
5643
|
-
"possibleFrameWidth": 16,
|
|
5644
|
-
"possibleFrameHeight": 16,
|
|
5645
5075
|
"imageSize": "16x32",
|
|
5646
5076
|
"imageWidth": 16,
|
|
5647
5077
|
"imageHeight": 32,
|
|
@@ -5654,9 +5084,6 @@
|
|
|
5654
5084
|
"SPLASH": {
|
|
5655
5085
|
"index": 272,
|
|
5656
5086
|
"animTag": "ANIM_TAG_SPLASH",
|
|
5657
|
-
"possibleFrameSize": "64x64",
|
|
5658
|
-
"possibleFrameWidth": 64,
|
|
5659
|
-
"possibleFrameHeight": 64,
|
|
5660
5087
|
"imageSize": "64x64",
|
|
5661
5088
|
"imageWidth": 64,
|
|
5662
5089
|
"imageHeight": 64,
|
|
@@ -5668,9 +5095,6 @@
|
|
|
5668
5095
|
"SWEAT_BEAD": {
|
|
5669
5096
|
"index": 273,
|
|
5670
5097
|
"animTag": "ANIM_TAG_SWEAT_BEAD",
|
|
5671
|
-
"possibleFrameSize": "8x8",
|
|
5672
|
-
"possibleFrameWidth": 8,
|
|
5673
|
-
"possibleFrameHeight": 8,
|
|
5674
5098
|
"imageSize": "8x8",
|
|
5675
5099
|
"imageWidth": 8,
|
|
5676
5100
|
"imageHeight": 8,
|
|
@@ -5735,9 +5159,6 @@
|
|
|
5735
5159
|
"SLAM_HIT_2": {
|
|
5736
5160
|
"index": 277,
|
|
5737
5161
|
"animTag": "ANIM_TAG_SLAM_HIT_2",
|
|
5738
|
-
"possibleFrameSize": "64x64",
|
|
5739
|
-
"possibleFrameWidth": 64,
|
|
5740
|
-
"possibleFrameHeight": 64,
|
|
5741
5162
|
"imageSize": "64x128",
|
|
5742
5163
|
"imageWidth": 64,
|
|
5743
5164
|
"imageHeight": 128,
|
|
@@ -5750,9 +5171,6 @@
|
|
|
5750
5171
|
"RECYCLE": {
|
|
5751
5172
|
"index": 278,
|
|
5752
5173
|
"animTag": "ANIM_TAG_RECYCLE",
|
|
5753
|
-
"possibleFrameSize": "64x64",
|
|
5754
|
-
"possibleFrameWidth": 64,
|
|
5755
|
-
"possibleFrameHeight": 64,
|
|
5756
5174
|
"imageSize": "64x64",
|
|
5757
5175
|
"imageWidth": 64,
|
|
5758
5176
|
"imageHeight": 64,
|
|
@@ -5806,9 +5224,6 @@
|
|
|
5806
5224
|
"PROTECT": {
|
|
5807
5225
|
"index": 280,
|
|
5808
5226
|
"animTag": "ANIM_TAG_PROTECT",
|
|
5809
|
-
"possibleFrameSize": "64x64",
|
|
5810
|
-
"possibleFrameWidth": 64,
|
|
5811
|
-
"possibleFrameHeight": 64,
|
|
5812
5227
|
"imageSize": "64x64",
|
|
5813
5228
|
"imageWidth": 64,
|
|
5814
5229
|
"imageHeight": 64,
|
|
@@ -5820,9 +5235,6 @@
|
|
|
5820
5235
|
"DIRT_MOUND": {
|
|
5821
5236
|
"index": 281,
|
|
5822
5237
|
"animTag": "ANIM_TAG_DIRT_MOUND",
|
|
5823
|
-
"possibleFrameSize": "32x16",
|
|
5824
|
-
"possibleFrameWidth": 32,
|
|
5825
|
-
"possibleFrameHeight": 16,
|
|
5826
5238
|
"imageSize": "32x32",
|
|
5827
5239
|
"imageWidth": 32,
|
|
5828
5240
|
"imageHeight": 32,
|
|
@@ -5835,9 +5247,6 @@
|
|
|
5835
5247
|
"SHOCK_3": {
|
|
5836
5248
|
"index": 282,
|
|
5837
5249
|
"animTag": "ANIM_TAG_SHOCK_3",
|
|
5838
|
-
"possibleFrameSize": "32x32",
|
|
5839
|
-
"possibleFrameWidth": 32,
|
|
5840
|
-
"possibleFrameHeight": 32,
|
|
5841
5250
|
"imageSize": "32x96",
|
|
5842
5251
|
"imageWidth": 32,
|
|
5843
5252
|
"imageHeight": 96,
|
|
@@ -5851,9 +5260,6 @@
|
|
|
5851
5260
|
"WEATHER_BALL": {
|
|
5852
5261
|
"index": 283,
|
|
5853
5262
|
"animTag": "ANIM_TAG_WEATHER_BALL",
|
|
5854
|
-
"possibleFrameSize": "32x32",
|
|
5855
|
-
"possibleFrameWidth": 32,
|
|
5856
|
-
"possibleFrameHeight": 32,
|
|
5857
5263
|
"imageSize": "32x32",
|
|
5858
5264
|
"imageWidth": 32,
|
|
5859
5265
|
"imageHeight": 32,
|
|
@@ -5865,9 +5271,6 @@
|
|
|
5865
5271
|
"BIRD": {
|
|
5866
5272
|
"index": 284,
|
|
5867
5273
|
"animTag": "ANIM_TAG_BIRD",
|
|
5868
|
-
"possibleFrameSize": "64x64",
|
|
5869
|
-
"possibleFrameWidth": 64,
|
|
5870
|
-
"possibleFrameHeight": 64,
|
|
5871
5274
|
"imageSize": "64x64",
|
|
5872
5275
|
"imageWidth": 64,
|
|
5873
5276
|
"imageHeight": 64,
|
|
@@ -5879,9 +5282,6 @@
|
|
|
5879
5282
|
"CROSS_IMPACT": {
|
|
5880
5283
|
"index": 285,
|
|
5881
5284
|
"animTag": "ANIM_TAG_CROSS_IMPACT",
|
|
5882
|
-
"possibleFrameSize": "32x32",
|
|
5883
|
-
"possibleFrameWidth": 32,
|
|
5884
|
-
"possibleFrameHeight": 32,
|
|
5885
5285
|
"imageSize": "32x32",
|
|
5886
5286
|
"imageWidth": 32,
|
|
5887
5287
|
"imageHeight": 32,
|
|
@@ -5893,9 +5293,6 @@
|
|
|
5893
5293
|
"SLASH_2": {
|
|
5894
5294
|
"index": 286,
|
|
5895
5295
|
"animTag": "ANIM_TAG_SLASH_2",
|
|
5896
|
-
"possibleFrameSize": "32x32",
|
|
5897
|
-
"possibleFrameWidth": 32,
|
|
5898
|
-
"possibleFrameHeight": 32,
|
|
5899
5296
|
"imageSize": "32x128",
|
|
5900
5297
|
"imageWidth": 32,
|
|
5901
5298
|
"imageHeight": 128,
|
|
@@ -5910,9 +5307,6 @@
|
|
|
5910
5307
|
"WHIP_HIT": {
|
|
5911
5308
|
"index": 287,
|
|
5912
5309
|
"animTag": "ANIM_TAG_WHIP_HIT",
|
|
5913
|
-
"possibleFrameSize": "32x32",
|
|
5914
|
-
"possibleFrameWidth": 32,
|
|
5915
|
-
"possibleFrameHeight": 32,
|
|
5916
5310
|
"imageSize": "32x256",
|
|
5917
5311
|
"imageWidth": 32,
|
|
5918
5312
|
"imageHeight": 256,
|
|
@@ -5931,9 +5325,6 @@
|
|
|
5931
5325
|
"BLUE_RING_2": {
|
|
5932
5326
|
"index": 288,
|
|
5933
5327
|
"animTag": "ANIM_TAG_BLUE_RING_2",
|
|
5934
|
-
"possibleFrameSize": "16x32",
|
|
5935
|
-
"possibleFrameWidth": 16,
|
|
5936
|
-
"possibleFrameHeight": 32,
|
|
5937
5328
|
"imageSize": "16x32",
|
|
5938
5329
|
"imageWidth": 16,
|
|
5939
5330
|
"imageHeight": 32,
|