├── assets └── sprites │ ├── killian.png │ └── killian.json ├── README.md ├── index.html ├── Killian.js └── stateMachine.js /assets/sprites/killian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aroth/phaser-extend-sprite-statemachine-example/HEAD/assets/sprites/killian.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Screenshot](http://i.imgur.com/0zOAp0o.png) 2 | 3 | [Demo](http://www.adamjroth.com/phaser-extend-sprite-statemachine-example/) 4 | 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Killian - Phaser Demo 6 | 7 | 8 | 9 | 10 | 11 | Press the RIGHT arrow key to change state. 12 |

13 |
14 | 15 | 37 | 38 | -------------------------------------------------------------------------------- /Killian.js: -------------------------------------------------------------------------------- 1 | // 2 | // Killian 3 | // 4 | 5 | Killian = function( game, x, y ){ 6 | Phaser.Sprite.call(this, game, x, y, 'killian'); 7 | 8 | // 9 | // Animations 10 | // 11 | 12 | this.animations.add('walking', [1,2,3,4,5,6,7,8,9,10,11,12], 30, true); 13 | this.animations.add('walking_to_sitting', [13,14,15,16,17,18,19], 40, false); 14 | 15 | this.animations.add('sitting', [21,22,23,24,25,26], 35, true); 16 | this.animations.add('sitting_to_walking', [19,18,17,16,15,14,13], 40, false); 17 | this.animations.add('sitting_to_laying', [88,89,90,91,92,93,94,95,97,97,97,97], 40, false); 18 | 19 | this.animations.add('laying', [97,98,99,98], 10, true); 20 | this.animations.add('laying_to_sitting', [95,94,93,92,91,90,89,88,87,87,87,87,87,87,87], 40, false); 21 | this.animations.add('laying_to_sleeping', [102,103,104,105,106,107,108,109,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110,110], 40, false); 22 | 23 | this.animations.add('sleeping', [113,114,115,116,117,118,119,120,121,121,121,121,121,121,121,121,121,121,121,120,119,118,117,116,115,114,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113,113], 10, true ); 24 | this.animations.add('sleeping_to_laying', [113,110,109,108,107,106,105,104,103,102,100,99,98,97,97,97,97,97,97,97], 40, false); 25 | 26 | // 27 | // State Machine 28 | // 29 | 30 | this.sm = new StateMachine( this, { debug: false } ); 31 | var self = this; 32 | 33 | this.sm.state('sitting', { 34 | enter: function(){ }, 35 | update: function(){ }, 36 | exit: function(){ } 37 | }); 38 | 39 | this.sm.state('walking', { 40 | enter: function(){ }, 41 | update: function(){ }, 42 | exit: function(){ } 43 | }); 44 | 45 | this.sm.state('laying', { 46 | enter: function(){ }, 47 | update: function(){ }, 48 | exit: function(){ } 49 | }); 50 | 51 | this.sm.state('sleeping', { 52 | enter: function(){ }, 53 | update: function(){ }, 54 | exit: function(){ } 55 | }); 56 | 57 | // 58 | // state machine transitions 59 | // 60 | 61 | // walking 62 | this.sm.transition('walking_to_sitting', 'walking', 'sitting', function(){ 63 | return ( !game.input.keyboard.isDown(Phaser.Keyboard.RIGHT) ); 64 | }); 65 | 66 | this.sm.transition('sitting_to_walking', 'sitting', 'walking', function(){ 67 | return ( game.input.keyboard.isDown(Phaser.Keyboard.RIGHT) ); 68 | }); 69 | 70 | // sitting 71 | this.sm.transition('sitting_to_laying', 'sitting', 'laying', function(){ 72 | return ( new Date() - self.sm.timer > 1000 ); 73 | }); 74 | 75 | // laying 76 | this.sm.transition('laying_to_sitting', 'laying', 'sitting', function(){ 77 | return ( game.input.keyboard.isDown(Phaser.Keyboard.RIGHT) ); 78 | }); 79 | 80 | this.sm.transition('laying_to_sleeping', 'laying', 'sleeping', function(){ 81 | return ( new Date() - self.sm.timer > 1000 ); 82 | }); 83 | 84 | // sleeping 85 | this.sm.transition('sleeping_to_laying', 'sleeping', 'laying', function(){ 86 | return ( game.input.keyboard.isDown(Phaser.Keyboard.RIGHT) ); 87 | }); 88 | 89 | this.animations.play( this.sm.initialState ); 90 | 91 | game.add.existing(this); 92 | } 93 | 94 | Killian.prototype = Object.create(Phaser.Sprite.prototype); 95 | Killian.prototype.constructor = Killian; 96 | Killian.prototype.update = function(){ 97 | this.sm.update(); 98 | } -------------------------------------------------------------------------------- /stateMachine.js: -------------------------------------------------------------------------------- 1 | // modified from https://github.com/drhayes/impactjs-statemachine 2 | var StateMachine = function( entity, opts ) { 3 | this.unnamedTransitionCounter = 0; 4 | 5 | this.entity = entity; 6 | this.opts = opts || {}; 7 | 8 | this.states = {}; 9 | this.transitions = {}; 10 | // Track states by name. 11 | this.initialState = null; 12 | this.currentState = null; 13 | this.previousState = null; 14 | this.timer = null; 15 | 16 | this.state = function(name, definition) { 17 | if (!definition) { 18 | return this.states[name]; 19 | } 20 | this.states[name] = definition; 21 | if (!this.initialState) { 22 | this.initialState = name; 23 | } 24 | }; 25 | 26 | this.transition = function(name, fromState, toState, predicate) { 27 | if (!fromState && !toState && !predicate) { 28 | return this.transitions[name]; 29 | } 30 | // Transitions don't require names. 31 | if (!predicate) { 32 | predicate = toState; 33 | toState = fromState; 34 | fromState = name; 35 | name = 'transition-' + this.unnamedTransitionCounter; 36 | this.unnamedTransitionCounter += 1; 37 | } 38 | if (!this.states[fromState]) { 39 | throw new Error('Missing from state: ' + fromState); 40 | } 41 | if (!this.states[toState]) { 42 | throw new Error('Missing to state: ' + toState); 43 | } 44 | var transition = { 45 | name: name, 46 | fromState: fromState, 47 | toState: toState, 48 | predicate: predicate 49 | }; 50 | this.transitions[name] = transition; 51 | return transition; 52 | }; 53 | 54 | this.update = function() { 55 | if (!this.currentState) { 56 | this.currentState = this.initialState; 57 | } 58 | var state = this.state(this.currentState); 59 | 60 | if (this.previousState !== this.currentState) { 61 | if( this.lastTransition ){ 62 | this.entity.animations.play( this.lastTransition.name ); 63 | if( this.opts.debug ){ 64 | console.log("Play transitional animation: " + this.lastTransition.name ); 65 | } 66 | } 67 | 68 | if (state.enter) { 69 | this.timer = new Date(); 70 | state.enter( this.lastTransition ); 71 | } 72 | this.previousState = this.currentState; 73 | } 74 | 75 | // Verify the transitional animation has completed before entering update() 76 | if( this.lastTransition && 77 | ( this.entity.animations.currentAnim.name == this.lastTransition.name && this.entity.animations.currentAnim.isPlaying ) ){ 78 | return; 79 | } 80 | 81 | if( this.entity.animations.currentAnim.name != this.currentState ){ 82 | if( this.opts.debug ){ 83 | console.log("Play animation: " + this.currentState ); 84 | } 85 | this.entity.animations.play( this.currentState ); 86 | } 87 | 88 | if (state.update) { 89 | state.update(); 90 | } 91 | // Iterate through transitions. 92 | for (var name in this.transitions) { 93 | var transition = this.transitions[name]; 94 | if (transition.fromState === this.currentState && 95 | transition.predicate()) { 96 | this.lastTransition = transition; 97 | if (state.exit) { 98 | state.exit(); 99 | } 100 | this.currentState = transition.toState; 101 | return; 102 | } 103 | } 104 | }; 105 | }; -------------------------------------------------------------------------------- /assets/sprites/killian.json: -------------------------------------------------------------------------------- 1 | {"frames": [ 2 | 3 | { 4 | "filename": "output0001.png", 5 | "frame": {"x":966,"y":623,"w":238,"h":145}, 6 | "rotated": false, 7 | "trimmed": true, 8 | "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, 9 | "sourceSize": {"w":424,"h":363} 10 | }, 11 | { 12 | "filename": "output0002.png", 13 | "frame": {"x":726,"y":619,"w":238,"h":145}, 14 | "rotated": false, 15 | "trimmed": true, 16 | "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, 17 | "sourceSize": {"w":424,"h":363} 18 | }, 19 | { 20 | "filename": "output0003.png", 21 | "frame": {"x":486,"y":617,"w":238,"h":145}, 22 | "rotated": false, 23 | "trimmed": true, 24 | "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, 25 | "sourceSize": {"w":424,"h":363} 26 | }, 27 | { 28 | "filename": "output0004.png", 29 | "frame": {"x":242,"y":613,"w":242,"h":145}, 30 | "rotated": false, 31 | "trimmed": true, 32 | "spriteSourceSize": {"x":78,"y":172,"w":242,"h":145}, 33 | "sourceSize": {"w":424,"h":363} 34 | }, 35 | { 36 | "filename": "output0005.png", 37 | "frame": {"x":1054,"y":480,"w":244,"h":141}, 38 | "rotated": false, 39 | "trimmed": true, 40 | "spriteSourceSize": {"x":76,"y":171,"w":244,"h":141}, 41 | "sourceSize": {"w":424,"h":363} 42 | }, 43 | { 44 | "filename": "output0006.png", 45 | "frame": {"x":2,"y":611,"w":238,"h":145}, 46 | "rotated": false, 47 | "trimmed": true, 48 | "spriteSourceSize": {"x":81,"y":170,"w":238,"h":145}, 49 | "sourceSize": {"w":424,"h":363} 50 | }, 51 | { 52 | "filename": "output0007.png", 53 | "frame": {"x":2,"y":760,"w":240,"h":147}, 54 | "rotated": false, 55 | "trimmed": true, 56 | "spriteSourceSize": {"x":79,"y":171,"w":240,"h":147}, 57 | "sourceSize": {"w":424,"h":363} 58 | }, 59 | { 60 | "filename": "output0008.png", 61 | "frame": {"x":2850,"y":639,"w":240,"h":147}, 62 | "rotated": false, 63 | "trimmed": true, 64 | "spriteSourceSize": {"x":79,"y":170,"w":240,"h":147}, 65 | "sourceSize": {"w":424,"h":363} 66 | }, 67 | { 68 | "filename": "output0009.png", 69 | "frame": {"x":244,"y":760,"w":240,"h":149}, 70 | "rotated": false, 71 | "trimmed": true, 72 | "spriteSourceSize": {"x":79,"y":171,"w":240,"h":149}, 73 | "sourceSize": {"w":424,"h":363} 74 | }, 75 | { 76 | "filename": "output0010.png", 77 | "frame": {"x":2608,"y":639,"w":240,"h":147}, 78 | "rotated": false, 79 | "trimmed": true, 80 | "spriteSourceSize": {"x":79,"y":170,"w":240,"h":147}, 81 | "sourceSize": {"w":424,"h":363} 82 | }, 83 | { 84 | "filename": "output0011.png", 85 | "frame": {"x":2858,"y":492,"w":238,"h":145}, 86 | "rotated": false, 87 | "trimmed": true, 88 | "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, 89 | "sourceSize": {"w":424,"h":363} 90 | }, 91 | { 92 | "filename": "output0012.png", 93 | "frame": {"x":1300,"y":484,"w":238,"h":143}, 94 | "rotated": false, 95 | "trimmed": true, 96 | "spriteSourceSize": {"x":82,"y":172,"w":238,"h":143}, 97 | "sourceSize": {"w":424,"h":363} 98 | }, 99 | { 100 | "filename": "output0013.png", 101 | "frame": {"x":2618,"y":492,"w":238,"h":145}, 102 | "rotated": false, 103 | "trimmed": true, 104 | "spriteSourceSize": {"x":82,"y":172,"w":238,"h":145}, 105 | "sourceSize": {"w":424,"h":363} 106 | }, 107 | { 108 | "filename": "output0014.png", 109 | "frame": {"x":1072,"y":776,"w":218,"h":153}, 110 | "rotated": false, 111 | "trimmed": true, 112 | "spriteSourceSize": {"x":97,"y":168,"w":218,"h":153}, 113 | "sourceSize": {"w":424,"h":363} 114 | }, 115 | { 116 | "filename": "output0015.png", 117 | "frame": {"x":2334,"y":784,"w":204,"h":165}, 118 | "rotated": false, 119 | "trimmed": true, 120 | "spriteSourceSize": {"x":108,"y":161,"w":204,"h":165}, 121 | "sourceSize": {"w":424,"h":363} 122 | }, 123 | { 124 | "filename": "output0016.png", 125 | "frame": {"x":2742,"y":788,"w":200,"h":167}, 126 | "rotated": false, 127 | "trimmed": true, 128 | "spriteSourceSize": {"x":107,"y":156,"w":200,"h":167}, 129 | "sourceSize": {"w":424,"h":363} 130 | }, 131 | { 132 | "filename": "output0017.png", 133 | "frame": {"x":830,"y":923,"w":198,"h":177}, 134 | "rotated": false, 135 | "trimmed": true, 136 | "spriteSourceSize": {"x":102,"y":149,"w":198,"h":177}, 137 | "sourceSize": {"w":424,"h":363} 138 | }, 139 | { 140 | "filename": "output0018.png", 141 | "frame": {"x":1802,"y":941,"w":186,"h":179}, 142 | "rotated": false, 143 | "trimmed": true, 144 | "spriteSourceSize": {"x":108,"y":143,"w":186,"h":179}, 145 | "sourceSize": {"w":424,"h":363} 146 | }, 147 | { 148 | "filename": "output0019.png", 149 | "frame": {"x":2382,"y":955,"w":162,"h":181}, 150 | "rotated": false, 151 | "trimmed": true, 152 | "spriteSourceSize": {"x":131,"y":143,"w":162,"h":181}, 153 | "sourceSize": {"w":424,"h":363} 154 | }, 155 | { 156 | "filename": "output0020.png", 157 | "frame": {"x":1632,"y":1120,"w":158,"h":193}, 158 | "rotated": false, 159 | "trimmed": true, 160 | "spriteSourceSize": {"x":121,"y":133,"w":158,"h":193}, 161 | "sourceSize": {"w":424,"h":363} 162 | }, 163 | { 164 | "filename": "output0021.png", 165 | "frame": {"x":1482,"y":1120,"w":148,"h":191}, 166 | "rotated": false, 167 | "trimmed": true, 168 | "spriteSourceSize": {"x":131,"y":135,"w":148,"h":191}, 169 | "sourceSize": {"w":424,"h":363} 170 | }, 171 | { 172 | "filename": "output0022.png", 173 | "frame": {"x":3132,"y":788,"w":148,"h":191}, 174 | "rotated": false, 175 | "trimmed": true, 176 | "spriteSourceSize": {"x":131,"y":135,"w":148,"h":191}, 177 | "sourceSize": {"w":424,"h":363} 178 | }, 179 | { 180 | "filename": "output0023.png", 181 | "frame": {"x":3264,"y":993,"w":144,"h":191}, 182 | "rotated": false, 183 | "trimmed": true, 184 | "spriteSourceSize": {"x":135,"y":135,"w":144,"h":191}, 185 | "sourceSize": {"w":424,"h":363} 186 | }, 187 | { 188 | "filename": "output0024.png", 189 | "frame": {"x":1020,"y":1110,"w":142,"h":191}, 190 | "rotated": false, 191 | "trimmed": true, 192 | "spriteSourceSize": {"x":137,"y":135,"w":142,"h":191}, 193 | "sourceSize": {"w":424,"h":363} 194 | }, 195 | { 196 | "filename": "output0025.png", 197 | "frame": {"x":2,"y":1078,"w":142,"h":191}, 198 | "rotated": false, 199 | "trimmed": true, 200 | "spriteSourceSize": {"x":137,"y":135,"w":142,"h":191}, 201 | "sourceSize": {"w":424,"h":363} 202 | }, 203 | { 204 | "filename": "output0026.png", 205 | "frame": {"x":3484,"y":574,"w":142,"h":191}, 206 | "rotated": false, 207 | "trimmed": true, 208 | "spriteSourceSize": {"x":137,"y":135,"w":142,"h":191}, 209 | "sourceSize": {"w":424,"h":363} 210 | }, 211 | { 212 | "filename": "output0027.png", 213 | "frame": {"x":1164,"y":1116,"w":150,"h":191}, 214 | "rotated": false, 215 | "trimmed": true, 216 | "spriteSourceSize": {"x":129,"y":135,"w":150,"h":191}, 217 | "sourceSize": {"w":424,"h":363} 218 | }, 219 | { 220 | "filename": "output0028.png", 221 | "frame": {"x":1316,"y":1120,"w":164,"h":191}, 222 | "rotated": false, 223 | "trimmed": true, 224 | "spriteSourceSize": {"x":115,"y":135,"w":164,"h":191}, 225 | "sourceSize": {"w":424,"h":363} 226 | }, 227 | { 228 | "filename": "output0029.png", 229 | "frame": {"x":3460,"y":960,"w":160,"h":181}, 230 | "rotated": false, 231 | "trimmed": true, 232 | "spriteSourceSize": {"x":130,"y":143,"w":160,"h":181}, 233 | "sourceSize": {"w":424,"h":363} 234 | }, 235 | { 236 | "filename": "output0030.png", 237 | "frame": {"x":1030,"y":931,"w":172,"h":177}, 238 | "rotated": false, 239 | "trimmed": true, 240 | "spriteSourceSize": {"x":123,"y":145,"w":172,"h":177}, 241 | "sourceSize": {"w":424,"h":363} 242 | }, 243 | { 244 | "filename": "output0031.png", 245 | "frame": {"x":2944,"y":788,"w":186,"h":167}, 246 | "rotated": false, 247 | "trimmed": true, 248 | "spriteSourceSize": {"x":115,"y":159,"w":186,"h":167}, 249 | "sourceSize": {"w":424,"h":363} 250 | }, 251 | { 252 | "filename": "output0032.png", 253 | "frame": {"x":1938,"y":778,"w":206,"h":161}, 254 | "rotated": false, 255 | "trimmed": true, 256 | "spriteSourceSize": {"x":102,"y":163,"w":206,"h":161}, 257 | "sourceSize": {"w":424,"h":363} 258 | }, 259 | { 260 | "filename": "output0033.png", 261 | "frame": {"x":2182,"y":486,"w":214,"h":143}, 262 | "rotated": false, 263 | "trimmed": true, 264 | "spriteSourceSize": {"x":97,"y":180,"w":214,"h":143}, 265 | "sourceSize": {"w":424,"h":363} 266 | }, 267 | { 268 | "filename": "output0034.png", 269 | "frame": {"x":230,"y":2,"w":210,"h":113}, 270 | "rotated": false, 271 | "trimmed": true, 272 | "spriteSourceSize": {"x":107,"y":208,"w":210,"h":113}, 273 | "sourceSize": {"w":424,"h":363} 274 | }, 275 | { 276 | "filename": "output0035.png", 277 | "frame": {"x":1148,"y":2,"w":232,"h":113}, 278 | "rotated": false, 279 | "trimmed": true, 280 | "spriteSourceSize": {"x":85,"y":208,"w":232,"h":113}, 281 | "sourceSize": {"w":424,"h":363} 282 | }, 283 | { 284 | "filename": "output0036.png", 285 | "frame": {"x":912,"y":2,"w":234,"h":113}, 286 | "rotated": false, 287 | "trimmed": true, 288 | "spriteSourceSize": {"x":83,"y":208,"w":234,"h":113}, 289 | "sourceSize": {"w":424,"h":363} 290 | }, 291 | { 292 | "filename": "output0037.png", 293 | "frame": {"x":450,"y":117,"w":232,"h":115}, 294 | "rotated": false, 295 | "trimmed": true, 296 | "spriteSourceSize": {"x":85,"y":206,"w":232,"h":115}, 297 | "sourceSize": {"w":424,"h":363} 298 | }, 299 | { 300 | "filename": "output0038.png", 301 | "frame": {"x":2994,"y":2,"w":228,"h":115}, 302 | "rotated": false, 303 | "trimmed": true, 304 | "spriteSourceSize": {"x":88,"y":206,"w":228,"h":115}, 305 | "sourceSize": {"w":424,"h":363} 306 | }, 307 | { 308 | "filename": "output0039.png", 309 | "frame": {"x":216,"y":117,"w":232,"h":115}, 310 | "rotated": false, 311 | "trimmed": true, 312 | "spriteSourceSize": {"x":84,"y":206,"w":232,"h":115}, 313 | "sourceSize": {"w":424,"h":363} 314 | }, 315 | { 316 | "filename": "output0040.png", 317 | "frame": {"x":3224,"y":2,"w":232,"h":115}, 318 | "rotated": false, 319 | "trimmed": true, 320 | "spriteSourceSize": {"x":84,"y":206,"w":232,"h":115}, 321 | "sourceSize": {"w":424,"h":363} 322 | }, 323 | { 324 | "filename": "output0041.png", 325 | "frame": {"x":2760,"y":2,"w":232,"h":115}, 326 | "rotated": false, 327 | "trimmed": true, 328 | "spriteSourceSize": {"x":84,"y":206,"w":232,"h":115}, 329 | "sourceSize": {"w":424,"h":363} 330 | }, 331 | { 332 | "filename": "output0042.png", 333 | "frame": {"x":922,"y":117,"w":236,"h":115}, 334 | "rotated": false, 335 | "trimmed": true, 336 | "spriteSourceSize": {"x":80,"y":206,"w":236,"h":115}, 337 | "sourceSize": {"w":424,"h":363} 338 | }, 339 | { 340 | "filename": "output0043.png", 341 | "frame": {"x":684,"y":117,"w":236,"h":115}, 342 | "rotated": false, 343 | "trimmed": true, 344 | "spriteSourceSize": {"x":80,"y":206,"w":236,"h":115}, 345 | "sourceSize": {"w":424,"h":363} 346 | }, 347 | { 348 | "filename": "output0044.png", 349 | "frame": {"x":676,"y":2,"w":234,"h":113}, 350 | "rotated": false, 351 | "trimmed": true, 352 | "spriteSourceSize": {"x":83,"y":208,"w":234,"h":113}, 353 | "sourceSize": {"w":424,"h":363} 354 | }, 355 | { 356 | "filename": "output0045.png", 357 | "frame": {"x":526,"y":234,"w":238,"h":117}, 358 | "rotated": false, 359 | "trimmed": true, 360 | "spriteSourceSize": {"x":79,"y":206,"w":238,"h":117}, 361 | "sourceSize": {"w":424,"h":363} 362 | }, 363 | { 364 | "filename": "output0046.png", 365 | "frame": {"x":1000,"y":234,"w":232,"h":117}, 366 | "rotated": false, 367 | "trimmed": true, 368 | "spriteSourceSize": {"x":85,"y":206,"w":232,"h":117}, 369 | "sourceSize": {"w":424,"h":363} 370 | }, 371 | { 372 | "filename": "output0047.png", 373 | "frame": {"x":442,"y":2,"w":232,"h":113}, 374 | "rotated": false, 375 | "trimmed": true, 376 | "spriteSourceSize": {"x":85,"y":206,"w":232,"h":113}, 377 | "sourceSize": {"w":424,"h":363} 378 | }, 379 | { 380 | "filename": "output0048.png", 381 | "frame": {"x":766,"y":234,"w":232,"h":117}, 382 | "rotated": false, 383 | "trimmed": true, 384 | "spriteSourceSize": {"x":85,"y":204,"w":232,"h":117}, 385 | "sourceSize": {"w":424,"h":363} 386 | }, 387 | { 388 | "filename": "output0049.png", 389 | "frame": {"x":3212,"y":236,"w":228,"h":119}, 390 | "rotated": false, 391 | "trimmed": true, 392 | "spriteSourceSize": {"x":88,"y":204,"w":228,"h":119}, 393 | "sourceSize": {"w":424,"h":363} 394 | }, 395 | { 396 | "filename": "output0050.png", 397 | "frame": {"x":1234,"y":234,"w":226,"h":117}, 398 | "rotated": false, 399 | "trimmed": true, 400 | "spriteSourceSize": {"x":90,"y":205,"w":226,"h":117}, 401 | "sourceSize": {"w":424,"h":363} 402 | }, 403 | { 404 | "filename": "output0051.png", 405 | "frame": {"x":1462,"y":234,"w":230,"h":117}, 406 | "rotated": false, 407 | "trimmed": true, 408 | "spriteSourceSize": {"x":86,"y":205,"w":230,"h":117}, 409 | "sourceSize": {"w":424,"h":363} 410 | }, 411 | { 412 | "filename": "output0052.png", 413 | "frame": {"x":1694,"y":234,"w":234,"h":117}, 414 | "rotated": false, 415 | "trimmed": true, 416 | "spriteSourceSize": {"x":83,"y":206,"w":234,"h":117}, 417 | "sourceSize": {"w":424,"h":363} 418 | }, 419 | { 420 | "filename": "output0053.png", 421 | "frame": {"x":2734,"y":236,"w":238,"h":119}, 422 | "rotated": false, 423 | "trimmed": true, 424 | "spriteSourceSize": {"x":79,"y":205,"w":238,"h":119}, 425 | "sourceSize": {"w":424,"h":363} 426 | }, 427 | { 428 | "filename": "output0054.png", 429 | "frame": {"x":2974,"y":236,"w":236,"h":119}, 430 | "rotated": false, 431 | "trimmed": true, 432 | "spriteSourceSize": {"x":81,"y":206,"w":236,"h":119}, 433 | "sourceSize": {"w":424,"h":363} 434 | }, 435 | { 436 | "filename": "output0055.png", 437 | "frame": {"x":3300,"y":381,"w":192,"h":135}, 438 | "rotated": false, 439 | "trimmed": true, 440 | "spriteSourceSize": {"x":127,"y":189,"w":192,"h":135}, 441 | "sourceSize": {"w":424,"h":363} 442 | }, 443 | { 444 | "filename": "output0056.png", 445 | "frame": {"x":2674,"y":357,"w":190,"h":133}, 446 | "rotated": false, 447 | "trimmed": true, 448 | "spriteSourceSize": {"x":129,"y":191,"w":190,"h":133}, 449 | "sourceSize": {"w":424,"h":363} 450 | }, 451 | { 452 | "filename": "output0057.png", 453 | "frame": {"x":1864,"y":353,"w":188,"h":131}, 454 | "rotated": false, 455 | "trimmed": true, 456 | "spriteSourceSize": {"x":131,"y":192,"w":188,"h":131}, 457 | "sourceSize": {"w":424,"h":363} 458 | }, 459 | { 460 | "filename": "output0058.png", 461 | "frame": {"x":1676,"y":353,"w":186,"h":129}, 462 | "rotated": false, 463 | "trimmed": true, 464 | "spriteSourceSize": {"x":133,"y":193,"w":186,"h":129}, 465 | "sourceSize": {"w":424,"h":363} 466 | }, 467 | { 468 | "filename": "output0059.png", 469 | "frame": {"x":1300,"y":353,"w":186,"h":127}, 470 | "rotated": false, 471 | "trimmed": true, 472 | "spriteSourceSize": {"x":133,"y":194,"w":186,"h":127}, 473 | "sourceSize": {"w":424,"h":363} 474 | }, 475 | { 476 | "filename": "output0060.png", 477 | "frame": {"x":2242,"y":353,"w":186,"h":131}, 478 | "rotated": false, 479 | "trimmed": true, 480 | "spriteSourceSize": {"x":133,"y":191,"w":186,"h":131}, 481 | "sourceSize": {"w":424,"h":363} 482 | }, 483 | { 484 | "filename": "output0061.png", 485 | "frame": {"x":1488,"y":353,"w":186,"h":129}, 486 | "rotated": false, 487 | "trimmed": true, 488 | "spriteSourceSize": {"x":133,"y":192,"w":186,"h":129}, 489 | "sourceSize": {"w":424,"h":363} 490 | }, 491 | { 492 | "filename": "output0062.png", 493 | "frame": {"x":2054,"y":353,"w":186,"h":131}, 494 | "rotated": false, 495 | "trimmed": true, 496 | "spriteSourceSize": {"x":133,"y":190,"w":186,"h":131}, 497 | "sourceSize": {"w":424,"h":363} 498 | }, 499 | { 500 | "filename": "output0063.png", 501 | "frame": {"x":2504,"y":236,"w":228,"h":119}, 502 | "rotated": false, 503 | "trimmed": true, 504 | "spriteSourceSize": {"x":88,"y":206,"w":228,"h":119}, 505 | "sourceSize": {"w":424,"h":363} 506 | }, 507 | { 508 | "filename": "output0064.png", 509 | "frame": {"x":1756,"y":486,"w":212,"h":143}, 510 | "rotated": false, 511 | "trimmed": true, 512 | "spriteSourceSize": {"x":96,"y":180,"w":212,"h":143}, 513 | "sourceSize": {"w":424,"h":363} 514 | }, 515 | { 516 | "filename": "output0065.png", 517 | "frame": {"x":3282,"y":816,"w":176,"h":175}, 518 | "rotated": false, 519 | "trimmed": true, 520 | "spriteSourceSize": {"x":102,"y":149,"w":176,"h":175}, 521 | "sourceSize": {"w":424,"h":363} 522 | }, 523 | { 524 | "filename": "output0066.png", 525 | "frame": {"x":3410,"y":1143,"w":182,"h":195}, 526 | "rotated": false, 527 | "trimmed": true, 528 | "spriteSourceSize": {"x":96,"y":129,"w":182,"h":195}, 529 | "sourceSize": {"w":424,"h":363} 530 | }, 531 | { 532 | "filename": "output0067.png", 533 | "frame": {"x":3032,"y":1367,"w":184,"h":211}, 534 | "rotated": false, 535 | "trimmed": true, 536 | "spriteSourceSize": {"x":100,"y":113,"w":184,"h":211}, 537 | "sourceSize": {"w":424,"h":363} 538 | }, 539 | { 540 | "filename": "output0068.png", 541 | "frame": {"x":1520,"y":1520,"w":190,"h":215}, 542 | "rotated": false, 543 | "trimmed": true, 544 | "spriteSourceSize": {"x":95,"y":109,"w":190,"h":215}, 545 | "sourceSize": {"w":424,"h":363} 546 | }, 547 | { 548 | "filename": "output0069.png", 549 | "frame": {"x":2036,"y":1536,"w":186,"h":221}, 550 | "rotated": false, 551 | "trimmed": true, 552 | "spriteSourceSize": {"x":99,"y":105,"w":186,"h":221}, 553 | "sourceSize": {"w":424,"h":363} 554 | }, 555 | { 556 | "filename": "output0070.png", 557 | "frame": {"x":928,"y":1510,"w":192,"h":213}, 558 | "rotated": false, 559 | "trimmed": true, 560 | "spriteSourceSize": {"x":93,"y":110,"w":192,"h":213}, 561 | "sourceSize": {"w":424,"h":363} 562 | }, 563 | { 564 | "filename": "output0071.png", 565 | "frame": {"x":2454,"y":1333,"w":194,"h":209}, 566 | "rotated": false, 567 | "trimmed": true, 568 | "spriteSourceSize": {"x":91,"y":113,"w":194,"h":209}, 569 | "sourceSize": {"w":424,"h":363} 570 | }, 571 | { 572 | "filename": "output0072.png", 573 | "frame": {"x":2070,"y":1327,"w":196,"h":207}, 574 | "rotated": false, 575 | "trimmed": true, 576 | "spriteSourceSize": {"x":89,"y":114,"w":196,"h":207}, 577 | "sourceSize": {"w":424,"h":363} 578 | }, 579 | { 580 | "filename": "output0073.png", 581 | "frame": {"x":3054,"y":981,"w":208,"h":189}, 582 | "rotated": false, 583 | "trimmed": true, 584 | "spriteSourceSize": {"x":91,"y":133,"w":208,"h":189}, 585 | "sourceSize": {"w":424,"h":363} 586 | }, 587 | { 588 | "filename": "output0074.png", 589 | "frame": {"x":1204,"y":937,"w":216,"h":177}, 590 | "rotated": false, 591 | "trimmed": true, 592 | "spriteSourceSize": {"x":90,"y":144,"w":216,"h":177}, 593 | "sourceSize": {"w":424,"h":363} 594 | }, 595 | { 596 | "filename": "output0075.png", 597 | "frame": {"x":486,"y":764,"w":218,"h":149}, 598 | "rotated": false, 599 | "trimmed": true, 600 | "spriteSourceSize": {"x":97,"y":167,"w":218,"h":149}, 601 | "sourceSize": {"w":424,"h":363} 602 | }, 603 | { 604 | "filename": "output0076.png", 605 | "frame": {"x":3098,"y":492,"w":192,"h":145}, 606 | "rotated": false, 607 | "trimmed": true, 608 | "spriteSourceSize": {"x":126,"y":169,"w":192,"h":145}, 609 | "sourceSize": {"w":424,"h":363} 610 | }, 611 | { 612 | "filename": "output0077.png", 613 | "frame": {"x":2206,"y":631,"w":188,"h":149}, 614 | "rotated": false, 615 | "trimmed": true, 616 | "spriteSourceSize": {"x":132,"y":162,"w":188,"h":149}, 617 | "sourceSize": {"w":424,"h":363} 618 | }, 619 | { 620 | "filename": "output0078.png", 621 | "frame": {"x":2186,"y":951,"w":194,"h":179}, 622 | "rotated": false, 623 | "trimmed": true, 624 | "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, 625 | "sourceSize": {"w":424,"h":363} 626 | }, 627 | { 628 | "filename": "output0079.png", 629 | "frame": {"x":1990,"y":947,"w":194,"h":179}, 630 | "rotated": false, 631 | "trimmed": true, 632 | "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, 633 | "sourceSize": {"w":424,"h":363} 634 | }, 635 | { 636 | "filename": "output0080.png", 637 | "frame": {"x":2396,"y":635,"w":210,"h":147}, 638 | "rotated": false, 639 | "trimmed": true, 640 | "spriteSourceSize": {"x":102,"y":171,"w":210,"h":147}, 641 | "sourceSize": {"w":424,"h":363} 642 | }, 643 | { 644 | "filename": "output0081.png", 645 | "frame": {"x":388,"y":915,"w":208,"h":169}, 646 | "rotated": false, 647 | "trimmed": true, 648 | "spriteSourceSize": {"x":104,"y":143,"w":208,"h":169}, 649 | "sourceSize": {"w":424,"h":363} 650 | }, 651 | { 652 | "filename": "output0082.png", 653 | "frame": {"x":2708,"y":957,"w":182,"h":181}, 654 | "rotated": false, 655 | "trimmed": true, 656 | "spriteSourceSize": {"x":130,"y":138,"w":182,"h":181}, 657 | "sourceSize": {"w":424,"h":363} 658 | }, 659 | { 660 | "filename": "output0083.png", 661 | "frame": {"x":706,"y":766,"w":192,"h":151}, 662 | "rotated": false, 663 | "trimmed": true, 664 | "spriteSourceSize": {"x":133,"y":167,"w":192,"h":151}, 665 | "sourceSize": {"w":424,"h":363} 666 | }, 667 | { 668 | "filename": "output0084.png", 669 | "frame": {"x":1970,"y":486,"w":210,"h":143}, 670 | "rotated": false, 671 | "trimmed": true, 672 | "spriteSourceSize": {"x":122,"y":178,"w":210,"h":143}, 673 | "sourceSize": {"w":424,"h":363} 674 | }, 675 | { 676 | "filename": "output0085.png", 677 | "frame": {"x":3292,"y":665,"w":178,"h":149}, 678 | "rotated": false, 679 | "trimmed": true, 680 | "spriteSourceSize": {"x":141,"y":173,"w":178,"h":149}, 681 | "sourceSize": {"w":424,"h":363} 682 | }, 683 | { 684 | "filename": "output0086.png", 685 | "frame": {"x":1930,"y":234,"w":192,"h":117}, 686 | "rotated": false, 687 | "trimmed": true, 688 | "spriteSourceSize": {"x":125,"y":206,"w":192,"h":117}, 689 | "sourceSize": {"w":424,"h":363} 690 | }, 691 | { 692 | "filename": "output0087.png", 693 | "frame": {"x":2,"y":115,"w":212,"h":115}, 694 | "rotated": false, 695 | "trimmed": true, 696 | "spriteSourceSize": {"x":103,"y":207,"w":212,"h":115}, 697 | "sourceSize": {"w":424,"h":363} 698 | }, 699 | { 700 | "filename": "output0088.png", 701 | "frame": {"x":3472,"y":767,"w":148,"h":191}, 702 | "rotated": false, 703 | "trimmed": true, 704 | "spriteSourceSize": {"x":131,"y":135,"w":148,"h":191}, 705 | "sourceSize": {"w":424,"h":363} 706 | }, 707 | { 708 | "filename": "output0089.png", 709 | "frame": {"x":2892,"y":957,"w":160,"h":181}, 710 | "rotated": false, 711 | "trimmed": true, 712 | "spriteSourceSize": {"x":130,"y":143,"w":160,"h":181}, 713 | "sourceSize": {"w":424,"h":363} 714 | }, 715 | { 716 | "filename": "output0090.png", 717 | "frame": {"x":1422,"y":941,"w":176,"h":177}, 718 | "rotated": false, 719 | "trimmed": true, 720 | "spriteSourceSize": {"x":119,"y":145,"w":176,"h":177}, 721 | "sourceSize": {"w":424,"h":363} 722 | }, 723 | { 724 | "filename": "output0091.png", 725 | "frame": {"x":2,"y":909,"w":190,"h":167}, 726 | "rotated": false, 727 | "trimmed": true, 728 | "spriteSourceSize": {"x":111,"y":159,"w":190,"h":167}, 729 | "sourceSize": {"w":424,"h":363} 730 | }, 731 | { 732 | "filename": "output0092.png", 733 | "frame": {"x":1730,"y":778,"w":206,"h":161}, 734 | "rotated": false, 735 | "trimmed": true, 736 | "spriteSourceSize": {"x":102,"y":163,"w":206,"h":161}, 737 | "sourceSize": {"w":424,"h":363} 738 | }, 739 | { 740 | "filename": "output0093.png", 741 | "frame": {"x":1540,"y":484,"w":214,"h":143}, 742 | "rotated": false, 743 | "trimmed": true, 744 | "spriteSourceSize": {"x":97,"y":180,"w":214,"h":143}, 745 | "sourceSize": {"w":424,"h":363} 746 | }, 747 | { 748 | "filename": "output0094.png", 749 | "frame": {"x":1160,"y":117,"w":216,"h":115}, 750 | "rotated": false, 751 | "trimmed": true, 752 | "spriteSourceSize": {"x":101,"y":207,"w":216,"h":115}, 753 | "sourceSize": {"w":424,"h":363} 754 | }, 755 | { 756 | "filename": "output0095.png", 757 | "frame": {"x":1378,"y":117,"w":226,"h":115}, 758 | "rotated": false, 759 | "trimmed": true, 760 | "spriteSourceSize": {"x":91,"y":207,"w":226,"h":115}, 761 | "sourceSize": {"w":424,"h":363} 762 | }, 763 | { 764 | "filename": "output0096.png", 765 | "frame": {"x":2,"y":2,"w":226,"h":111}, 766 | "rotated": false, 767 | "trimmed": true, 768 | "spriteSourceSize": {"x":88,"y":211,"w":226,"h":111}, 769 | "sourceSize": {"w":424,"h":363} 770 | }, 771 | { 772 | "filename": "output0097.png", 773 | "frame": {"x":314,"y":234,"w":210,"h":115}, 774 | "rotated": false, 775 | "trimmed": true, 776 | "spriteSourceSize": {"x":97,"y":208,"w":210,"h":115}, 777 | "sourceSize": {"w":424,"h":363} 778 | }, 779 | { 780 | "filename": "output0098.png", 781 | "frame": {"x":2028,"y":117,"w":208,"h":115}, 782 | "rotated": false, 783 | "trimmed": true, 784 | "spriteSourceSize": {"x":99,"y":208,"w":208,"h":115}, 785 | "sourceSize": {"w":424,"h":363} 786 | }, 787 | { 788 | "filename": "output0099.png", 789 | "frame": {"x":1818,"y":117,"w":208,"h":115}, 790 | "rotated": false, 791 | "trimmed": true, 792 | "spriteSourceSize": {"x":99,"y":208,"w":208,"h":115}, 793 | "sourceSize": {"w":424,"h":363} 794 | }, 795 | { 796 | "filename": "output0100.png", 797 | "frame": {"x":2450,"y":117,"w":210,"h":115}, 798 | "rotated": false, 799 | "trimmed": true, 800 | "spriteSourceSize": {"x":97,"y":208,"w":210,"h":115}, 801 | "sourceSize": {"w":424,"h":363} 802 | }, 803 | { 804 | "filename": "output0101.png", 805 | "frame": {"x":2450,"y":117,"w":210,"h":115}, 806 | "rotated": false, 807 | "trimmed": true, 808 | "spriteSourceSize": {"x":97,"y":208,"w":210,"h":115}, 809 | "sourceSize": {"w":424,"h":363} 810 | }, 811 | { 812 | "filename": "output0102.png", 813 | "frame": {"x":2238,"y":117,"w":210,"h":115}, 814 | "rotated": false, 815 | "trimmed": true, 816 | "spriteSourceSize": {"x":97,"y":208,"w":210,"h":115}, 817 | "sourceSize": {"w":424,"h":363} 818 | }, 819 | { 820 | "filename": "output0103.png", 821 | "frame": {"x":2870,"y":119,"w":206,"h":115}, 822 | "rotated": false, 823 | "trimmed": true, 824 | "spriteSourceSize": {"x":101,"y":208,"w":206,"h":115}, 825 | "sourceSize": {"w":424,"h":363} 826 | }, 827 | { 828 | "filename": "output0104.png", 829 | "frame": {"x":2662,"y":119,"w":206,"h":115}, 830 | "rotated": false, 831 | "trimmed": true, 832 | "spriteSourceSize": {"x":101,"y":208,"w":206,"h":115}, 833 | "sourceSize": {"w":424,"h":363} 834 | }, 835 | { 836 | "filename": "output0105.png", 837 | "frame": {"x":3078,"y":119,"w":196,"h":115}, 838 | "rotated": false, 839 | "trimmed": true, 840 | "spriteSourceSize": {"x":111,"y":208,"w":196,"h":115}, 841 | "sourceSize": {"w":424,"h":363} 842 | }, 843 | { 844 | "filename": "output0106.png", 845 | "frame": {"x":3276,"y":119,"w":184,"h":115}, 846 | "rotated": false, 847 | "trimmed": true, 848 | "spriteSourceSize": {"x":123,"y":208,"w":184,"h":115}, 849 | "sourceSize": {"w":424,"h":363} 850 | }, 851 | { 852 | "filename": "output0107.png", 853 | "frame": {"x":3458,"y":2,"w":168,"h":115}, 854 | "rotated": false, 855 | "trimmed": true, 856 | "spriteSourceSize": {"x":139,"y":208,"w":168,"h":115}, 857 | "sourceSize": {"w":424,"h":363} 858 | }, 859 | { 860 | "filename": "output0108.png", 861 | "frame": {"x":3462,"y":119,"w":164,"h":115}, 862 | "rotated": false, 863 | "trimmed": true, 864 | "spriteSourceSize": {"x":143,"y":208,"w":164,"h":115}, 865 | "sourceSize": {"w":424,"h":363} 866 | }, 867 | { 868 | "filename": "output0109.png", 869 | "frame": {"x":1382,"y":2,"w":156,"h":113}, 870 | "rotated": false, 871 | "trimmed": true, 872 | "spriteSourceSize": {"x":151,"y":210,"w":156,"h":113}, 873 | "sourceSize": {"w":424,"h":363} 874 | }, 875 | { 876 | "filename": "output0110.png", 877 | "frame": {"x":2,"y":232,"w":156,"h":115}, 878 | "rotated": false, 879 | "trimmed": true, 880 | "spriteSourceSize": {"x":152,"y":210,"w":156,"h":115}, 881 | "sourceSize": {"w":424,"h":363} 882 | }, 883 | { 884 | "filename": "output0111.png", 885 | "frame": {"x":2124,"y":234,"w":152,"h":117}, 886 | "rotated": false, 887 | "trimmed": true, 888 | "spriteSourceSize": {"x":156,"y":209,"w":152,"h":117}, 889 | "sourceSize": {"w":424,"h":363} 890 | }, 891 | { 892 | "filename": "output0112.png", 893 | "frame": {"x":160,"y":234,"w":152,"h":115}, 894 | "rotated": false, 895 | "trimmed": true, 896 | "spriteSourceSize": {"x":155,"y":211,"w":152,"h":115}, 897 | "sourceSize": {"w":424,"h":363} 898 | }, 899 | { 900 | "filename": "output0113.png", 901 | "frame": {"x":2300,"y":2,"w":150,"h":113}, 902 | "rotated": false, 903 | "trimmed": true, 904 | "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, 905 | "sourceSize": {"w":424,"h":363} 906 | }, 907 | { 908 | "filename": "output0114.png", 909 | "frame": {"x":2148,"y":2,"w":150,"h":113}, 910 | "rotated": false, 911 | "trimmed": true, 912 | "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, 913 | "sourceSize": {"w":424,"h":363} 914 | }, 915 | { 916 | "filename": "output0115.png", 917 | "frame": {"x":1996,"y":2,"w":150,"h":113}, 918 | "rotated": false, 919 | "trimmed": true, 920 | "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, 921 | "sourceSize": {"w":424,"h":363} 922 | }, 923 | { 924 | "filename": "output0116.png", 925 | "frame": {"x":1844,"y":2,"w":150,"h":113}, 926 | "rotated": false, 927 | "trimmed": true, 928 | "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, 929 | "sourceSize": {"w":424,"h":363} 930 | }, 931 | { 932 | "filename": "output0117.png", 933 | "frame": {"x":1692,"y":2,"w":150,"h":113}, 934 | "rotated": false, 935 | "trimmed": true, 936 | "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, 937 | "sourceSize": {"w":424,"h":363} 938 | }, 939 | { 940 | "filename": "output0118.png", 941 | "frame": {"x":1540,"y":2,"w":150,"h":113}, 942 | "rotated": false, 943 | "trimmed": true, 944 | "spriteSourceSize": {"x":156,"y":213,"w":150,"h":113}, 945 | "sourceSize": {"w":424,"h":363} 946 | }, 947 | { 948 | "filename": "output0119.png", 949 | "frame": {"x":2606,"y":2,"w":152,"h":113}, 950 | "rotated": false, 951 | "trimmed": true, 952 | "spriteSourceSize": {"x":155,"y":213,"w":152,"h":113}, 953 | "sourceSize": {"w":424,"h":363} 954 | }, 955 | { 956 | "filename": "output0120.png", 957 | "frame": {"x":2452,"y":2,"w":152,"h":113}, 958 | "rotated": false, 959 | "trimmed": true, 960 | "spriteSourceSize": {"x":155,"y":213,"w":152,"h":113}, 961 | "sourceSize": {"w":424,"h":363} 962 | }, 963 | { 964 | "filename": "output0121.png", 965 | "frame": {"x":2452,"y":2,"w":152,"h":113}, 966 | "rotated": false, 967 | "trimmed": true, 968 | "spriteSourceSize": {"x":155,"y":213,"w":152,"h":113}, 969 | "sourceSize": {"w":424,"h":363} 970 | }, 971 | { 972 | "filename": "output0122.png", 973 | "frame": {"x":2452,"y":2,"w":152,"h":113}, 974 | "rotated": false, 975 | "trimmed": true, 976 | "spriteSourceSize": {"x":155,"y":213,"w":152,"h":113}, 977 | "sourceSize": {"w":424,"h":363} 978 | }, 979 | { 980 | "filename": "output0123.png", 981 | "frame": {"x":2,"y":1468,"w":202,"h":211}, 982 | "rotated": false, 983 | "trimmed": true, 984 | "spriteSourceSize": {"x":86,"y":111,"w":202,"h":211}, 985 | "sourceSize": {"w":424,"h":363} 986 | }, 987 | { 988 | "filename": "output0124.png", 989 | "frame": {"x":2650,"y":1335,"w":210,"h":209}, 990 | "rotated": false, 991 | "trimmed": true, 992 | "spriteSourceSize": {"x":84,"y":110,"w":210,"h":209}, 993 | "sourceSize": {"w":424,"h":363} 994 | }, 995 | { 996 | "filename": "output0125.png", 997 | "frame": {"x":206,"y":1474,"w":214,"h":211}, 998 | "rotated": false, 999 | "trimmed": true, 1000 | "spriteSourceSize": {"x":88,"y":108,"w":214,"h":211}, 1001 | "sourceSize": {"w":424,"h":363} 1002 | }, 1003 | { 1004 | "filename": "output0126.png", 1005 | "frame": {"x":3398,"y":1340,"w":214,"h":209}, 1006 | "rotated": false, 1007 | "trimmed": true, 1008 | "spriteSourceSize": {"x":92,"y":107,"w":214,"h":209}, 1009 | "sourceSize": {"w":424,"h":363} 1010 | }, 1011 | { 1012 | "filename": "output0127.png", 1013 | "frame": {"x":1850,"y":1323,"w":218,"h":205}, 1014 | "rotated": false, 1015 | "trimmed": true, 1016 | "spriteSourceSize": {"x":92,"y":108,"w":218,"h":205}, 1017 | "sourceSize": {"w":424,"h":363} 1018 | }, 1019 | { 1020 | "filename": "output0128.png", 1021 | "frame": {"x":980,"y":1309,"w":222,"h":199}, 1022 | "rotated": false, 1023 | "trimmed": true, 1024 | "spriteSourceSize": {"x":89,"y":108,"w":222,"h":199}, 1025 | "sourceSize": {"w":424,"h":363} 1026 | }, 1027 | { 1028 | "filename": "output0129.png", 1029 | "frame": {"x":1204,"y":1313,"w":220,"h":199}, 1030 | "rotated": false, 1031 | "trimmed": true, 1032 | "spriteSourceSize": {"x":89,"y":108,"w":220,"h":199}, 1033 | "sourceSize": {"w":424,"h":363} 1034 | }, 1035 | { 1036 | "filename": "output0130.png", 1037 | "frame": {"x":1938,"y":1128,"w":218,"h":193}, 1038 | "rotated": false, 1039 | "trimmed": true, 1040 | "spriteSourceSize": {"x":91,"y":108,"w":218,"h":193}, 1041 | "sourceSize": {"w":424,"h":363} 1042 | }, 1043 | { 1044 | "filename": "output0131.png", 1045 | "frame": {"x":146,"y":1080,"w":226,"h":189}, 1046 | "rotated": false, 1047 | "trimmed": true, 1048 | "spriteSourceSize": {"x":84,"y":108,"w":226,"h":189}, 1049 | "sourceSize": {"w":424,"h":363} 1050 | }, 1051 | { 1052 | "filename": "output0132.png", 1053 | "frame": {"x":798,"y":1102,"w":220,"h":189}, 1054 | "rotated": false, 1055 | "trimmed": true, 1056 | "spriteSourceSize": {"x":90,"y":107,"w":220,"h":189}, 1057 | "sourceSize": {"w":424,"h":363} 1058 | }, 1059 | { 1060 | "filename": "output0133.png", 1061 | "frame": {"x":2,"y":1271,"w":200,"h":195}, 1062 | "rotated": false, 1063 | "trimmed": true, 1064 | "spriteSourceSize": {"x":110,"y":107,"w":200,"h":195}, 1065 | "sourceSize": {"w":424,"h":363} 1066 | }, 1067 | { 1068 | "filename": "output0134.png", 1069 | "frame": {"x":548,"y":1285,"w":174,"h":197}, 1070 | "rotated": false, 1071 | "trimmed": true, 1072 | "spriteSourceSize": {"x":135,"y":106,"w":174,"h":197}, 1073 | "sourceSize": {"w":424,"h":363} 1074 | }, 1075 | { 1076 | "filename": "output0135.png", 1077 | "frame": {"x":3218,"y":1383,"w":164,"h":215}, 1078 | "rotated": false, 1079 | "trimmed": true, 1080 | "spriteSourceSize": {"x":145,"y":101,"w":164,"h":215}, 1081 | "sourceSize": {"w":424,"h":363} 1082 | }, 1083 | { 1084 | "filename": "output0136.png", 1085 | "frame": {"x":390,"y":1693,"w":148,"h":227}, 1086 | "rotated": false, 1087 | "trimmed": true, 1088 | "spriteSourceSize": {"x":160,"y":102,"w":148,"h":227}, 1089 | "sourceSize": {"w":424,"h":363} 1090 | }, 1091 | { 1092 | "filename": "output0137.png", 1093 | "frame": {"x":1712,"y":1520,"w":136,"h":221}, 1094 | "rotated": false, 1095 | "trimmed": true, 1096 | "spriteSourceSize": {"x":171,"y":100,"w":136,"h":221}, 1097 | "sourceSize": {"w":424,"h":363} 1098 | }, 1099 | { 1100 | "filename": "output0138.png", 1101 | "frame": {"x":1416,"y":1737,"w":116,"h":231}, 1102 | "rotated": false, 1103 | "trimmed": true, 1104 | "spriteSourceSize": {"x":191,"y":98,"w":116,"h":231}, 1105 | "sourceSize": {"w":424,"h":363} 1106 | }, 1107 | { 1108 | "filename": "output0139.png", 1109 | "frame": {"x":2856,"y":1552,"w":114,"h":225}, 1110 | "rotated": false, 1111 | "trimmed": true, 1112 | "spriteSourceSize": {"x":193,"y":101,"w":114,"h":225}, 1113 | "sourceSize": {"w":424,"h":363} 1114 | }, 1115 | { 1116 | "filename": "output0140.png", 1117 | "frame": {"x":2,"y":1681,"w":110,"h":225}, 1118 | "rotated": false, 1119 | "trimmed": true, 1120 | "spriteSourceSize": {"x":195,"y":101,"w":110,"h":225}, 1121 | "sourceSize": {"w":424,"h":363} 1122 | }, 1123 | { 1124 | "filename": "output0141.png", 1125 | "frame": {"x":276,"y":1687,"w":112,"h":227}, 1126 | "rotated": false, 1127 | "trimmed": true, 1128 | "spriteSourceSize": {"x":193,"y":101,"w":112,"h":227}, 1129 | "sourceSize": {"w":424,"h":363} 1130 | }, 1131 | { 1132 | "filename": "output0142.png", 1133 | "frame": {"x":3326,"y":1776,"w":112,"h":235}, 1134 | "rotated": false, 1135 | "trimmed": true, 1136 | "spriteSourceSize": {"x":198,"y":101,"w":112,"h":235}, 1137 | "sourceSize": {"w":424,"h":363} 1138 | }, 1139 | { 1140 | "filename": "output0143.png", 1141 | "frame": {"x":3384,"y":1551,"w":114,"h":223}, 1142 | "rotated": false, 1143 | "trimmed": true, 1144 | "spriteSourceSize": {"x":190,"y":107,"w":114,"h":223}, 1145 | "sourceSize": {"w":424,"h":363} 1146 | }, 1147 | { 1148 | "filename": "output0144.png", 1149 | "frame": {"x":2740,"y":1546,"w":114,"h":223}, 1150 | "rotated": false, 1151 | "trimmed": true, 1152 | "spriteSourceSize": {"x":190,"y":107,"w":114,"h":223}, 1153 | "sourceSize": {"w":424,"h":363} 1154 | }, 1155 | { 1156 | "filename": "output0145.png", 1157 | "frame": {"x":2624,"y":1546,"w":114,"h":223}, 1158 | "rotated": false, 1159 | "trimmed": true, 1160 | "spriteSourceSize": {"x":193,"y":108,"w":114,"h":223}, 1161 | "sourceSize": {"w":424,"h":363} 1162 | }, 1163 | { 1164 | "filename": "output0146.png", 1165 | "frame": {"x":714,"y":1705,"w":116,"h":227}, 1166 | "rotated": false, 1167 | "trimmed": true, 1168 | "spriteSourceSize": {"x":194,"y":105,"w":116,"h":227}, 1169 | "sourceSize": {"w":424,"h":363} 1170 | }, 1171 | { 1172 | "filename": "output0147.png", 1173 | "frame": {"x":3084,"y":1580,"w":118,"h":225}, 1174 | "rotated": false, 1175 | "trimmed": true, 1176 | "spriteSourceSize": {"x":191,"y":106,"w":118,"h":225}, 1177 | "sourceSize": {"w":424,"h":363} 1178 | }, 1179 | { 1180 | "filename": "output0148.png", 1181 | "frame": {"x":3204,"y":1600,"w":120,"h":225}, 1182 | "rotated": false, 1183 | "trimmed": true, 1184 | "spriteSourceSize": {"x":188,"y":105,"w":120,"h":225}, 1185 | "sourceSize": {"w":424,"h":363} 1186 | }, 1187 | { 1188 | "filename": "output0149.png", 1189 | "frame": {"x":3500,"y":1551,"w":118,"h":223}, 1190 | "rotated": false, 1191 | "trimmed": true, 1192 | "spriteSourceSize": {"x":188,"y":106,"w":118,"h":223}, 1193 | "sourceSize": {"w":424,"h":363} 1194 | }, 1195 | { 1196 | "filename": "output0150.png", 1197 | "frame": {"x":1158,"y":1729,"w":106,"h":229}, 1198 | "rotated": false, 1199 | "trimmed": true, 1200 | "spriteSourceSize": {"x":200,"y":108,"w":106,"h":229}, 1201 | "sourceSize": {"w":424,"h":363} 1202 | }, 1203 | { 1204 | "filename": "output0151.png", 1205 | "frame": {"x":1050,"y":1729,"w":106,"h":229}, 1206 | "rotated": false, 1207 | "trimmed": true, 1208 | "spriteSourceSize": {"x":200,"y":108,"w":106,"h":229}, 1209 | "sourceSize": {"w":424,"h":363} 1210 | }, 1211 | { 1212 | "filename": "output0152.png", 1213 | "frame": {"x":1534,"y":1737,"w":104,"h":231}, 1214 | "rotated": false, 1215 | "trimmed": true, 1216 | "spriteSourceSize": {"x":199,"y":108,"w":104,"h":231}, 1217 | "sourceSize": {"w":424,"h":363} 1218 | }, 1219 | { 1220 | "filename": "output0153.png", 1221 | "frame": {"x":2972,"y":1580,"w":110,"h":225}, 1222 | "rotated": false, 1223 | "trimmed": true, 1224 | "spriteSourceSize": {"x":194,"y":110,"w":110,"h":225}, 1225 | "sourceSize": {"w":424,"h":363} 1226 | }, 1227 | { 1228 | "filename": "output0154.png", 1229 | "frame": {"x":2224,"y":1542,"w":110,"h":221}, 1230 | "rotated": false, 1231 | "trimmed": true, 1232 | "spriteSourceSize": {"x":193,"y":110,"w":110,"h":221}, 1233 | "sourceSize": {"w":424,"h":363} 1234 | }, 1235 | { 1236 | "filename": "output0155.png", 1237 | "frame": {"x":422,"y":1474,"w":118,"h":217}, 1238 | "rotated": false, 1239 | "trimmed": true, 1240 | "spriteSourceSize": {"x":192,"y":109,"w":118,"h":217}, 1241 | "sourceSize": {"w":424,"h":363} 1242 | }, 1243 | { 1244 | "filename": "output0156.png", 1245 | "frame": {"x":832,"y":1725,"w":106,"h":227}, 1246 | "rotated": false, 1247 | "trimmed": true, 1248 | "spriteSourceSize": {"x":200,"y":110,"w":106,"h":227}, 1249 | "sourceSize": {"w":424,"h":363} 1250 | }, 1251 | { 1252 | "filename": "output0157.png", 1253 | "frame": {"x":940,"y":1725,"w":108,"h":227}, 1254 | "rotated": false, 1255 | "trimmed": true, 1256 | "spriteSourceSize": {"x":198,"y":108,"w":108,"h":227}, 1257 | "sourceSize": {"w":424,"h":363} 1258 | }, 1259 | { 1260 | "filename": "output0158.png", 1261 | "frame": {"x":2336,"y":1542,"w":116,"h":221}, 1262 | "rotated": false, 1263 | "trimmed": true, 1264 | "spriteSourceSize": {"x":192,"y":108,"w":116,"h":221}, 1265 | "sourceSize": {"w":424,"h":363} 1266 | }, 1267 | { 1268 | "filename": "output0159.png", 1269 | "frame": {"x":1792,"y":1122,"w":144,"h":193}, 1270 | "rotated": false, 1271 | "trimmed": true, 1272 | "spriteSourceSize": {"x":135,"y":134,"w":144,"h":193}, 1273 | "sourceSize": {"w":424,"h":363} 1274 | }, 1275 | { 1276 | "filename": "output0160.png", 1277 | "frame": {"x":2896,"y":1140,"w":136,"h":195}, 1278 | "rotated": false, 1279 | "trimmed": true, 1280 | "spriteSourceSize": {"x":137,"y":132,"w":136,"h":195}, 1281 | "sourceSize": {"w":424,"h":363} 1282 | }, 1283 | { 1284 | "filename": "output0161.png", 1285 | "frame": {"x":852,"y":1293,"w":126,"h":197}, 1286 | "rotated": false, 1287 | "trimmed": true, 1288 | "spriteSourceSize": {"x":137,"y":130,"w":126,"h":197}, 1289 | "sourceSize": {"w":424,"h":363} 1290 | }, 1291 | { 1292 | "filename": "output0162.png", 1293 | "frame": {"x":724,"y":1293,"w":126,"h":197}, 1294 | "rotated": false, 1295 | "trimmed": true, 1296 | "spriteSourceSize": {"x":137,"y":130,"w":126,"h":197}, 1297 | "sourceSize": {"w":424,"h":363} 1298 | }, 1299 | { 1300 | "filename": "output0163.png", 1301 | "frame": {"x":3262,"y":1186,"w":134,"h":195}, 1302 | "rotated": false, 1303 | "trimmed": true, 1304 | "spriteSourceSize": {"x":130,"y":132,"w":134,"h":195}, 1305 | "sourceSize": {"w":424,"h":363} 1306 | }, 1307 | { 1308 | "filename": "output0164.png", 1309 | "frame": {"x":204,"y":1271,"w":150,"h":195}, 1310 | "rotated": false, 1311 | "trimmed": true, 1312 | "spriteSourceSize": {"x":114,"y":132,"w":150,"h":195}, 1313 | "sourceSize": {"w":424,"h":363} 1314 | }, 1315 | { 1316 | "filename": "output0165.png", 1317 | "frame": {"x":2426,"y":1138,"w":134,"h":193}, 1318 | "rotated": false, 1319 | "trimmed": true, 1320 | "spriteSourceSize": {"x":131,"y":134,"w":134,"h":193}, 1321 | "sourceSize": {"w":424,"h":363} 1322 | }, 1323 | { 1324 | "filename": "output0166.png", 1325 | "frame": {"x":3494,"y":381,"w":130,"h":191}, 1326 | "rotated": false, 1327 | "trimmed": true, 1328 | "spriteSourceSize": {"x":136,"y":136,"w":130,"h":191}, 1329 | "sourceSize": {"w":424,"h":363} 1330 | }, 1331 | { 1332 | "filename": "output0167.png", 1333 | "frame": {"x":2294,"y":1138,"w":130,"h":193}, 1334 | "rotated": false, 1335 | "trimmed": true, 1336 | "spriteSourceSize": {"x":138,"y":134,"w":130,"h":193}, 1337 | "sourceSize": {"w":424,"h":363} 1338 | }, 1339 | { 1340 | "filename": "output0168.png", 1341 | "frame": {"x":2158,"y":1132,"w":134,"h":193}, 1342 | "rotated": false, 1343 | "trimmed": true, 1344 | "spriteSourceSize": {"x":137,"y":134,"w":134,"h":193}, 1345 | "sourceSize": {"w":424,"h":363} 1346 | }, 1347 | { 1348 | "filename": "output0169.png", 1349 | "frame": {"x":2562,"y":1138,"w":132,"h":193}, 1350 | "rotated": false, 1351 | "trimmed": true, 1352 | "spriteSourceSize": {"x":137,"y":134,"w":132,"h":193}, 1353 | "sourceSize": {"w":424,"h":363} 1354 | }, 1355 | { 1356 | "filename": "output0170.png", 1357 | "frame": {"x":1522,"y":778,"w":206,"h":161}, 1358 | "rotated": false, 1359 | "trimmed": true, 1360 | "spriteSourceSize": {"x":102,"y":163,"w":206,"h":161}, 1361 | "sourceSize": {"w":424,"h":363} 1362 | }, 1363 | { 1364 | "filename": "output0171.png", 1365 | "frame": {"x":2,"y":472,"w":216,"h":137}, 1366 | "rotated": false, 1367 | "trimmed": true, 1368 | "spriteSourceSize": {"x":97,"y":188,"w":216,"h":137}, 1369 | "sourceSize": {"w":424,"h":363} 1370 | }, 1371 | { 1372 | "filename": "output0172.png", 1373 | "frame": {"x":1606,"y":117,"w":210,"h":115}, 1374 | "rotated": false, 1375 | "trimmed": true, 1376 | "spriteSourceSize": {"x":107,"y":207,"w":210,"h":115}, 1377 | "sourceSize": {"w":424,"h":363} 1378 | }, 1379 | { 1380 | "filename": "output0173.png", 1381 | "frame": {"x":2,"y":351,"w":224,"h":119}, 1382 | "rotated": false, 1383 | "trimmed": true, 1384 | "spriteSourceSize": {"x":93,"y":208,"w":224,"h":119}, 1385 | "sourceSize": {"w":424,"h":363} 1386 | }, 1387 | { 1388 | "filename": "output0174.png", 1389 | "frame": {"x":640,"y":353,"w":206,"h":119}, 1390 | "rotated": false, 1391 | "trimmed": true, 1392 | "spriteSourceSize": {"x":112,"y":208,"w":206,"h":119}, 1393 | "sourceSize": {"w":424,"h":363} 1394 | }, 1395 | { 1396 | "filename": "output0175.png", 1397 | "frame": {"x":436,"y":353,"w":202,"h":119}, 1398 | "rotated": false, 1399 | "trimmed": true, 1400 | "spriteSourceSize": {"x":115,"y":207,"w":202,"h":119}, 1401 | "sourceSize": {"w":424,"h":363} 1402 | }, 1403 | { 1404 | "filename": "output0176.png", 1405 | "frame": {"x":228,"y":351,"w":206,"h":119}, 1406 | "rotated": false, 1407 | "trimmed": true, 1408 | "spriteSourceSize": {"x":111,"y":206,"w":206,"h":119}, 1409 | "sourceSize": {"w":424,"h":363} 1410 | }, 1411 | { 1412 | "filename": "output0177.png", 1413 | "frame": {"x":2278,"y":234,"w":224,"h":117}, 1414 | "rotated": false, 1415 | "trimmed": true, 1416 | "spriteSourceSize": {"x":93,"y":207,"w":224,"h":117}, 1417 | "sourceSize": {"w":424,"h":363} 1418 | }, 1419 | { 1420 | "filename": "output0178.png", 1421 | "frame": {"x":220,"y":472,"w":190,"h":137}, 1422 | "rotated": false, 1423 | "trimmed": true, 1424 | "spriteSourceSize": {"x":118,"y":189,"w":190,"h":137}, 1425 | "sourceSize": {"w":424,"h":363} 1426 | }, 1427 | { 1428 | "filename": "output0179.png", 1429 | "frame": {"x":1206,"y":629,"w":208,"h":145}, 1430 | "rotated": false, 1431 | "trimmed": true, 1432 | "spriteSourceSize": {"x":100,"y":181,"w":208,"h":145}, 1433 | "sourceSize": {"w":424,"h":363} 1434 | }, 1435 | { 1436 | "filename": "output0180.png", 1437 | "frame": {"x":1604,"y":631,"w":190,"h":145}, 1438 | "rotated": false, 1439 | "trimmed": true, 1440 | "spriteSourceSize": {"x":118,"y":181,"w":190,"h":145}, 1441 | "sourceSize": {"w":424,"h":363} 1442 | }, 1443 | { 1444 | "filename": "output0181.png", 1445 | "frame": {"x":1416,"y":629,"w":186,"h":145}, 1446 | "rotated": false, 1447 | "trimmed": true, 1448 | "spriteSourceSize": {"x":122,"y":181,"w":186,"h":145}, 1449 | "sourceSize": {"w":424,"h":363} 1450 | }, 1451 | { 1452 | "filename": "output0182.png", 1453 | "frame": {"x":3292,"y":518,"w":190,"h":145}, 1454 | "rotated": false, 1455 | "trimmed": true, 1456 | "spriteSourceSize": {"x":118,"y":181,"w":190,"h":145}, 1457 | "sourceSize": {"w":424,"h":363} 1458 | }, 1459 | { 1460 | "filename": "output0183.png", 1461 | "frame": {"x":1796,"y":631,"w":212,"h":145}, 1462 | "rotated": false, 1463 | "trimmed": true, 1464 | "spriteSourceSize": {"x":96,"y":181,"w":212,"h":145}, 1465 | "sourceSize": {"w":424,"h":363} 1466 | }, 1467 | { 1468 | "filename": "output0184.png", 1469 | "frame": {"x":2010,"y":631,"w":194,"h":145}, 1470 | "rotated": false, 1471 | "trimmed": true, 1472 | "spriteSourceSize": {"x":114,"y":181,"w":194,"h":145}, 1473 | "sourceSize": {"w":424,"h":363} 1474 | }, 1475 | { 1476 | "filename": "output0185.png", 1477 | "frame": {"x":3092,"y":639,"w":198,"h":147}, 1478 | "rotated": false, 1479 | "trimmed": true, 1480 | "spriteSourceSize": {"x":25,"y":2,"w":198,"h":147}, 1481 | "sourceSize": {"w":424,"h":363} 1482 | }, 1483 | { 1484 | "filename": "output0186.png", 1485 | "frame": {"x":194,"y":911,"w":192,"h":167}, 1486 | "rotated": false, 1487 | "trimmed": true, 1488 | "spriteSourceSize": {"x":32,"y":16,"w":192,"h":167}, 1489 | "sourceSize": {"w":424,"h":363} 1490 | }, 1491 | { 1492 | "filename": "output0187.png", 1493 | "frame": {"x":356,"y":1277,"w":190,"h":195}, 1494 | "rotated": false, 1495 | "trimmed": true, 1496 | "spriteSourceSize": {"x":34,"y":28,"w":190,"h":195}, 1497 | "sourceSize": {"w":424,"h":363} 1498 | }, 1499 | { 1500 | "filename": "output0188.png", 1501 | "frame": {"x":2268,"y":1333,"w":184,"h":207}, 1502 | "rotated": false, 1503 | "trimmed": true, 1504 | "spriteSourceSize": {"x":41,"y":37,"w":184,"h":207}, 1505 | "sourceSize": {"w":424,"h":363} 1506 | }, 1507 | { 1508 | "filename": "output0189.png", 1509 | "frame": {"x":542,"y":1484,"w":174,"h":219}, 1510 | "rotated": false, 1511 | "trimmed": true, 1512 | "spriteSourceSize": {"x":50,"y":44,"w":174,"h":219}, 1513 | "sourceSize": {"w":424,"h":363} 1514 | }, 1515 | { 1516 | "filename": "output0190.png", 1517 | "frame": {"x":114,"y":1687,"w":160,"h":225}, 1518 | "rotated": false, 1519 | "trimmed": true, 1520 | "spriteSourceSize": {"x":65,"y":53,"w":160,"h":225}, 1521 | "sourceSize": {"w":424,"h":363} 1522 | }, 1523 | { 1524 | "filename": "output0191.png", 1525 | "frame": {"x":1640,"y":1743,"w":168,"h":231}, 1526 | "rotated": false, 1527 | "trimmed": true, 1528 | "spriteSourceSize": {"x":57,"y":61,"w":168,"h":231}, 1529 | "sourceSize": {"w":424,"h":363} 1530 | }, 1531 | { 1532 | "filename": "output0192.png", 1533 | "frame": {"x":1810,"y":1751,"w":154,"h":233}, 1534 | "rotated": false, 1535 | "trimmed": true, 1536 | "spriteSourceSize": {"x":77,"y":74,"w":154,"h":233}, 1537 | "sourceSize": {"w":424,"h":363} 1538 | }, 1539 | { 1540 | "filename": "output0193.png", 1541 | "frame": {"x":3440,"y":1776,"w":144,"h":235}, 1542 | "rotated": false, 1543 | "trimmed": true, 1544 | "spriteSourceSize": {"x":97,"y":74,"w":144,"h":235}, 1545 | "sourceSize": {"w":424,"h":363} 1546 | }, 1547 | { 1548 | "filename": "output0194.png", 1549 | "frame": {"x":2112,"y":1765,"w":144,"h":233}, 1550 | "rotated": false, 1551 | "trimmed": true, 1552 | "spriteSourceSize": {"x":121,"y":76,"w":144,"h":233}, 1553 | "sourceSize": {"w":424,"h":363} 1554 | }, 1555 | { 1556 | "filename": "output0195.png", 1557 | "frame": {"x":1266,"y":1729,"w":148,"h":229}, 1558 | "rotated": false, 1559 | "trimmed": true, 1560 | "spriteSourceSize": {"x":143,"y":75,"w":148,"h":229}, 1561 | "sourceSize": {"w":424,"h":363} 1562 | }, 1563 | { 1564 | "filename": "output0196.png", 1565 | "frame": {"x":2454,"y":1544,"w":168,"h":221}, 1566 | "rotated": false, 1567 | "trimmed": true, 1568 | "spriteSourceSize": {"x":157,"y":74,"w":168,"h":221}, 1569 | "sourceSize": {"w":424,"h":363} 1570 | }, 1571 | { 1572 | "filename": "output0197.png", 1573 | "frame": {"x":1122,"y":1514,"w":198,"h":213}, 1574 | "rotated": false, 1575 | "trimmed": true, 1576 | "spriteSourceSize": {"x":163,"y":75,"w":198,"h":213}, 1577 | "sourceSize": {"w":424,"h":363} 1578 | }, 1579 | { 1580 | "filename": "output0198.png", 1581 | "frame": {"x":718,"y":1492,"w":208,"h":211}, 1582 | "rotated": false, 1583 | "trimmed": true, 1584 | "spriteSourceSize": {"x":167,"y":74,"w":208,"h":211}, 1585 | "sourceSize": {"w":424,"h":363} 1586 | }, 1587 | { 1588 | "filename": "output0199.png", 1589 | "frame": {"x":1632,"y":1317,"w":216,"h":201}, 1590 | "rotated": false, 1591 | "trimmed": true, 1592 | "spriteSourceSize": {"x":174,"y":73,"w":216,"h":201}, 1593 | "sourceSize": {"w":424,"h":363} 1594 | }, 1595 | { 1596 | "filename": "output0200.png", 1597 | "frame": {"x":596,"y":1094,"w":200,"h":189}, 1598 | "rotated": false, 1599 | "trimmed": true, 1600 | "spriteSourceSize": {"x":178,"y":74,"w":200,"h":189}, 1601 | "sourceSize": {"w":424,"h":363} 1602 | }, 1603 | { 1604 | "filename": "output0201.png", 1605 | "frame": {"x":2696,"y":1140,"w":198,"h":193}, 1606 | "rotated": false, 1607 | "trimmed": true, 1608 | "spriteSourceSize": {"x":186,"y":74,"w":198,"h":193}, 1609 | "sourceSize": {"w":424,"h":363} 1610 | }, 1611 | { 1612 | "filename": "output0202.png", 1613 | "frame": {"x":1600,"y":941,"w":200,"h":177}, 1614 | "rotated": false, 1615 | "trimmed": true, 1616 | "spriteSourceSize": {"x":190,"y":73,"w":200,"h":177}, 1617 | "sourceSize": {"w":424,"h":363} 1618 | }, 1619 | { 1620 | "filename": "output0203.png", 1621 | "frame": {"x":1086,"y":353,"w":212,"h":125}, 1622 | "rotated": false, 1623 | "trimmed": true, 1624 | "spriteSourceSize": {"x":192,"y":76,"w":212,"h":125}, 1625 | "sourceSize": {"w":424,"h":363} 1626 | }, 1627 | { 1628 | "filename": "output0204.png", 1629 | "frame": {"x":1966,"y":1759,"w":144,"h":233}, 1630 | "rotated": false, 1631 | "trimmed": true, 1632 | "spriteSourceSize": {"x":121,"y":76,"w":144,"h":233}, 1633 | "sourceSize": {"w":424,"h":363} 1634 | }, 1635 | { 1636 | "filename": "output0205.png", 1637 | "frame": {"x":2556,"y":1771,"w":146,"h":233}, 1638 | "rotated": false, 1639 | "trimmed": true, 1640 | "spriteSourceSize": {"x":119,"y":76,"w":146,"h":233}, 1641 | "sourceSize": {"w":424,"h":363} 1642 | }, 1643 | { 1644 | "filename": "output0206.png", 1645 | "frame": {"x":2846,"y":1807,"w":146,"h":235}, 1646 | "rotated": false, 1647 | "trimmed": true, 1648 | "spriteSourceSize": {"x":120,"y":76,"w":146,"h":235}, 1649 | "sourceSize": {"w":424,"h":363} 1650 | }, 1651 | { 1652 | "filename": "output0207.png", 1653 | "frame": {"x":2994,"y":1807,"w":150,"h":235}, 1654 | "rotated": false, 1655 | "trimmed": true, 1656 | "spriteSourceSize": {"x":118,"y":75,"w":150,"h":235}, 1657 | "sourceSize": {"w":424,"h":363} 1658 | }, 1659 | { 1660 | "filename": "output0208.png", 1661 | "frame": {"x":2406,"y":1767,"w":148,"h":233}, 1662 | "rotated": false, 1663 | "trimmed": true, 1664 | "spriteSourceSize": {"x":119,"y":76,"w":148,"h":233}, 1665 | "sourceSize": {"w":424,"h":363} 1666 | }, 1667 | { 1668 | "filename": "output0209.png", 1669 | "frame": {"x":2258,"y":1765,"w":146,"h":233}, 1670 | "rotated": false, 1671 | "trimmed": true, 1672 | "spriteSourceSize": {"x":119,"y":76,"w":146,"h":233}, 1673 | "sourceSize": {"w":424,"h":363} 1674 | }, 1675 | { 1676 | "filename": "output0210.png", 1677 | "frame": {"x":2862,"y":1337,"w":168,"h":213}, 1678 | "rotated": false, 1679 | "trimmed": true, 1680 | "spriteSourceSize": {"x":136,"y":118,"w":168,"h":213}, 1681 | "sourceSize": {"w":424,"h":363} 1682 | }, 1683 | { 1684 | "filename": "output0211.png", 1685 | "frame": {"x":540,"y":1705,"w":172,"h":225}, 1686 | "rotated": false, 1687 | "trimmed": true, 1688 | "spriteSourceSize": {"x":137,"y":115,"w":172,"h":225}, 1689 | "sourceSize": {"w":424,"h":363} 1690 | }, 1691 | { 1692 | "filename": "output0212.png", 1693 | "frame": {"x":1426,"y":1313,"w":204,"h":199}, 1694 | "rotated": false, 1695 | "trimmed": true, 1696 | "spriteSourceSize": {"x":107,"y":120,"w":204,"h":199}, 1697 | "sourceSize": {"w":424,"h":363} 1698 | }, 1699 | { 1700 | "filename": "output0213.png", 1701 | "frame": {"x":2540,"y":788,"w":200,"h":165}, 1702 | "rotated": false, 1703 | "trimmed": true, 1704 | "spriteSourceSize": {"x":101,"y":143,"w":200,"h":165}, 1705 | "sourceSize": {"w":424,"h":363} 1706 | }, 1707 | { 1708 | "filename": "output0214.png", 1709 | "frame": {"x":2866,"y":357,"w":192,"h":133}, 1710 | "rotated": false, 1711 | "trimmed": true, 1712 | "spriteSourceSize": {"x":107,"y":151,"w":192,"h":133}, 1713 | "sourceSize": {"w":424,"h":363} 1714 | }, 1715 | { 1716 | "filename": "output0215.png", 1717 | "frame": {"x":656,"y":474,"w":188,"h":141}, 1718 | "rotated": false, 1719 | "trimmed": true, 1720 | "spriteSourceSize": {"x":120,"y":152,"w":188,"h":141}, 1721 | "sourceSize": {"w":424,"h":363} 1722 | }, 1723 | { 1724 | "filename": "output0216.png", 1725 | "frame": {"x":1990,"y":947,"w":194,"h":179}, 1726 | "rotated": false, 1727 | "trimmed": true, 1728 | "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, 1729 | "sourceSize": {"w":424,"h":363} 1730 | }, 1731 | { 1732 | "filename": "output0217.png", 1733 | "frame": {"x":846,"y":476,"w":206,"h":141}, 1734 | "rotated": false, 1735 | "trimmed": true, 1736 | "spriteSourceSize": {"x":76,"y":87,"w":206,"h":141}, 1737 | "sourceSize": {"w":424,"h":363} 1738 | }, 1739 | { 1740 | "filename": "output0218.png", 1741 | "frame": {"x":1292,"y":776,"w":228,"h":159}, 1742 | "rotated": false, 1743 | "trimmed": true, 1744 | "spriteSourceSize": {"x":59,"y":103,"w":228,"h":159}, 1745 | "sourceSize": {"w":424,"h":363} 1746 | }, 1747 | { 1748 | "filename": "output0219.png", 1749 | "frame": {"x":598,"y":919,"w":230,"h":173}, 1750 | "rotated": false, 1751 | "trimmed": true, 1752 | "spriteSourceSize": {"x":69,"y":103,"w":230,"h":173}, 1753 | "sourceSize": {"w":424,"h":363} 1754 | }, 1755 | { 1756 | "filename": "output0220.png", 1757 | "frame": {"x":3034,"y":1172,"w":226,"h":193}, 1758 | "rotated": false, 1759 | "trimmed": true, 1760 | "spriteSourceSize": {"x":78,"y":104,"w":226,"h":193}, 1761 | "sourceSize": {"w":424,"h":363} 1762 | }, 1763 | { 1764 | "filename": "output0221.png", 1765 | "frame": {"x":374,"y":1086,"w":220,"h":189}, 1766 | "rotated": false, 1767 | "trimmed": true, 1768 | "spriteSourceSize": {"x":90,"y":107,"w":220,"h":189}, 1769 | "sourceSize": {"w":424,"h":363} 1770 | }, 1771 | { 1772 | "filename": "output0222.png", 1773 | "frame": {"x":412,"y":474,"w":242,"h":137}, 1774 | "rotated": false, 1775 | "trimmed": true, 1776 | "spriteSourceSize": {"x":81,"y":182,"w":242,"h":137}, 1777 | "sourceSize": {"w":424,"h":363} 1778 | }, 1779 | { 1780 | "filename": "output0223.png", 1781 | "frame": {"x":2430,"y":357,"w":242,"h":131}, 1782 | "rotated": false, 1783 | "trimmed": true, 1784 | "spriteSourceSize": {"x":80,"y":190,"w":242,"h":131}, 1785 | "sourceSize": {"w":424,"h":363} 1786 | }, 1787 | { 1788 | "filename": "output0224.png", 1789 | "frame": {"x":848,"y":353,"w":236,"h":121}, 1790 | "rotated": false, 1791 | "trimmed": true, 1792 | "spriteSourceSize": {"x":83,"y":200,"w":236,"h":121}, 1793 | "sourceSize": {"w":424,"h":363} 1794 | }, 1795 | { 1796 | "filename": "output0225.png", 1797 | "frame": {"x":2546,"y":955,"w":160,"h":181}, 1798 | "rotated": false, 1799 | "trimmed": true, 1800 | "spriteSourceSize": {"x":128,"y":143,"w":160,"h":181}, 1801 | "sourceSize": {"w":424,"h":363} 1802 | }, 1803 | { 1804 | "filename": "output0226.png", 1805 | "frame": {"x":2146,"y":782,"w":186,"h":163}, 1806 | "rotated": false, 1807 | "trimmed": true, 1808 | "spriteSourceSize": {"x":111,"y":155,"w":186,"h":163}, 1809 | "sourceSize": {"w":424,"h":363} 1810 | }, 1811 | { 1812 | "filename": "output0227.png", 1813 | "frame": {"x":900,"y":770,"w":170,"h":151}, 1814 | "rotated": false, 1815 | "trimmed": true, 1816 | "spriteSourceSize": {"x":135,"y":170,"w":170,"h":151}, 1817 | "sourceSize": {"w":424,"h":363} 1818 | }, 1819 | { 1820 | "filename": "output0228.png", 1821 | "frame": {"x":3442,"y":236,"w":178,"h":143}, 1822 | "rotated": false, 1823 | "trimmed": true, 1824 | "spriteSourceSize": {"x":132,"y":163,"w":178,"h":143}, 1825 | "sourceSize": {"w":424,"h":363} 1826 | }, 1827 | { 1828 | "filename": "output0229.png", 1829 | "frame": {"x":2398,"y":490,"w":218,"h":143}, 1830 | "rotated": false, 1831 | "trimmed": true, 1832 | "spriteSourceSize": {"x":100,"y":177,"w":218,"h":143}, 1833 | "sourceSize": {"w":424,"h":363} 1834 | }, 1835 | { 1836 | "filename": "output0230.png", 1837 | "frame": {"x":3060,"y":357,"w":238,"h":133}, 1838 | "rotated": false, 1839 | "trimmed": true, 1840 | "spriteSourceSize": {"x":83,"y":180,"w":238,"h":133}, 1841 | "sourceSize": {"w":424,"h":363} 1842 | }, 1843 | { 1844 | "filename": "output0231.png", 1845 | "frame": {"x":1322,"y":1514,"w":196,"h":213}, 1846 | "rotated": false, 1847 | "trimmed": true, 1848 | "spriteSourceSize": {"x":106,"y":100,"w":196,"h":213}, 1849 | "sourceSize": {"w":424,"h":363} 1850 | }, 1851 | { 1852 | "filename": "output0232.png", 1853 | "frame": {"x":1850,"y":1530,"w":184,"h":219}, 1854 | "rotated": false, 1855 | "trimmed": true, 1856 | "spriteSourceSize": {"x":102,"y":94,"w":184,"h":219}, 1857 | "sourceSize": {"w":424,"h":363} 1858 | }, 1859 | { 1860 | "filename": "output0233.png", 1861 | "frame": {"x":2704,"y":1771,"w":140,"h":233}, 1862 | "rotated": false, 1863 | "trimmed": true, 1864 | "spriteSourceSize": {"x":121,"y":80,"w":140,"h":233}, 1865 | "sourceSize": {"w":424,"h":363} 1866 | }, 1867 | { 1868 | "filename": "output0234.png", 1869 | "frame": {"x":2186,"y":951,"w":194,"h":179}, 1870 | "rotated": false, 1871 | "trimmed": true, 1872 | "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, 1873 | "sourceSize": {"w":424,"h":363} 1874 | }, 1875 | { 1876 | "filename": "output0235.png", 1877 | "frame": {"x":1990,"y":947,"w":194,"h":179}, 1878 | "rotated": false, 1879 | "trimmed": true, 1880 | "spriteSourceSize": {"x":118,"y":144,"w":194,"h":179}, 1881 | "sourceSize": {"w":424,"h":363} 1882 | }, 1883 | { 1884 | "filename": "output0236.png", 1885 | "frame": {"x":2396,"y":635,"w":210,"h":147}, 1886 | "rotated": false, 1887 | "trimmed": true, 1888 | "spriteSourceSize": {"x":102,"y":171,"w":210,"h":147}, 1889 | "sourceSize": {"w":424,"h":363} 1890 | }, 1891 | { 1892 | "filename": "output0237.png", 1893 | "frame": {"x":388,"y":915,"w":208,"h":169}, 1894 | "rotated": false, 1895 | "trimmed": true, 1896 | "spriteSourceSize": {"x":104,"y":143,"w":208,"h":169}, 1897 | "sourceSize": {"w":424,"h":363} 1898 | }, 1899 | { 1900 | "filename": "output0238.png", 1901 | "frame": {"x":2708,"y":957,"w":182,"h":181}, 1902 | "rotated": false, 1903 | "trimmed": true, 1904 | "spriteSourceSize": {"x":130,"y":138,"w":182,"h":181}, 1905 | "sourceSize": {"w":424,"h":363} 1906 | }], 1907 | "meta": { 1908 | "app": "http://www.codeandweb.com/texturepacker ", 1909 | "version": "1.0", 1910 | "image": "sheet-output.png", 1911 | "format": "RGBA8888", 1912 | "size": {"w":3628,"h":2044}, 1913 | "scale": "1", 1914 | "smartupdate": "$TexturePacker:SmartUpdate:5a861f083045f7e4f4ef38c2f3b45995:c36cd02e70b08b7b2c925ff090c5d2f7:9ecb2c0297a2f90a4a13ea8287b1f963$" 1915 | } 1916 | } 1917 | --------------------------------------------------------------------------------