Merge branch 'beta' into damo-sheerforcedfixes
2
.github/workflows/deploy-beta.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
||||
submodules: 'recursive'
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
node-version-file: '.nvmrc'
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Build
|
||||
|
2
.github/workflows/deploy.yml
vendored
@ -18,7 +18,7 @@ jobs:
|
||||
submodules: 'recursive'
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "20"
|
||||
node-version-file: '.nvmrc'
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: Build
|
||||
|
10
.github/workflows/github-pages.yml
vendored
@ -24,7 +24,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository for Typedoc
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
path: pokerogue_docs
|
||||
@ -34,14 +34,14 @@ jobs:
|
||||
sudo apt update
|
||||
sudo apt install -y git openssh-client
|
||||
|
||||
- name: Setup Node 20.13.1
|
||||
uses: actions/setup-node@v1
|
||||
- name: Setup Node 22.14.1
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
node-version-file: "pokerogue_docs/.nvmrc"
|
||||
|
||||
- name: Checkout repository for Github Pages
|
||||
if: github.event_name == 'push'
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
path: pokerogue_gh
|
||||
ref: gh-pages
|
||||
|
1
.github/workflows/quality.yml
vendored
@ -29,6 +29,7 @@ jobs:
|
||||
uses: actions/setup-node@v4 # Use the setup-node action version 4
|
||||
with:
|
||||
node-version-file: '.nvmrc'
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install Node.js dependencies # Step to install Node.js dependencies
|
||||
run: npm ci # Use 'npm ci' to install dependencies
|
||||
|
7
.github/workflows/test-shard-template.yml
vendored
@ -19,14 +19,15 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
uses: actions/checkout@v4
|
||||
uses: actions/checkout@v4.2.2
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
node-version-file: '.nvmrc'
|
||||
cache: 'npm'
|
||||
- name: Install Node.js dependencies
|
||||
run: npm ci
|
||||
- name: Run tests
|
||||
run: npx vitest --project ${{ inputs.project }} --shard=${{ inputs.shard }}/${{ inputs.totalShards }} ${{ !runner.debug && '--silent' || '' }}
|
||||
run: npx vitest --project ${{ inputs.project }} --no-isolate --shard=${{ inputs.shard }}/${{ inputs.totalShards }} ${{ !runner.debug && '--silent' || '' }}
|
||||
|
69
.github/workflows/tests.yml
vendored
@ -5,39 +5,58 @@ on:
|
||||
# but only for the main branch
|
||||
push:
|
||||
branches:
|
||||
- main # Trigger on push events to the main branch
|
||||
- main # Trigger on push events to the main branch
|
||||
- beta # Trigger on push events to the beta branch
|
||||
# go upvote https://github.com/actions/runner/issues/1182 and yell at microsoft until they fix this or ditch yml for workflows
|
||||
paths:
|
||||
# src and test files
|
||||
- "src/**"
|
||||
- "test/**"
|
||||
- "public/**"
|
||||
# Workflows that can impact tests
|
||||
- ".github/workflows/test*.yml"
|
||||
# top-level files
|
||||
- "package*.json"
|
||||
- ".nvrmc" # Updates to node version can break tests
|
||||
- "vite.*.ts" # vite.config.ts, vite.vitest.config.ts, vitest.workspace.ts
|
||||
- "tsconfig*.json" # tsconfig.json tweaking can impact compilation
|
||||
- "global.d.ts"
|
||||
- ".env.*"
|
||||
# Blanket negations for files that cannot impact tests
|
||||
- "!**/*.py" # No .py files
|
||||
- "!**/*.sh" # No .sh files
|
||||
- "!**/*.md" # No .md files
|
||||
- "!**/.git*" # .gitkeep and family
|
||||
|
||||
pull_request:
|
||||
branches:
|
||||
- main # Trigger on pull request events targeting the main branch
|
||||
- main # Trigger on pull request events targeting the main branch
|
||||
- beta # Trigger on pull request events targeting the beta branch
|
||||
paths: # go upvote https://github.com/actions/runner/issues/1182 and yell at microsoft because until then we have to duplicate this
|
||||
# src and test files
|
||||
- "src/**"
|
||||
- "test/**"
|
||||
- "public/**"
|
||||
# Workflows that can impact tests
|
||||
- ".github/workflows/test*.yml"
|
||||
# top-level files
|
||||
- "package*.json"
|
||||
- ".nvrmc" # Updates to node version can break tests
|
||||
- "vite*" # vite.config.ts, vite.vitest.config.ts, vitest.workspace.ts
|
||||
- "tsconfig*.json" # tsconfig.json tweaking can impact compilation
|
||||
- "global.d.ts"
|
||||
- ".env.*"
|
||||
# Blanket negations for files that cannot impact tests
|
||||
- "!**/*.py" # No .py files
|
||||
- "!**/*.sh" # No .sh files
|
||||
- "!**/*.md" # No .md files
|
||||
- "!**/.git*" # .gitkeep and family
|
||||
merge_group:
|
||||
types: [checks_requested]
|
||||
|
||||
jobs:
|
||||
pre-test:
|
||||
name: Run Pre-test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: 'recursive'
|
||||
path: tests-action
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
- name: Install Node.js dependencies
|
||||
working-directory: tests-action
|
||||
run: npm ci
|
||||
- name: Run Pre-test
|
||||
working-directory: tests-action
|
||||
run: npx vitest run --project pre ${{ !runner.debug && '--silent' || '' }}
|
||||
|
||||
run-tests:
|
||||
name: Run Tests
|
||||
needs: [pre-test]
|
||||
name: Run Tests
|
||||
strategy:
|
||||
matrix:
|
||||
shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
|
||||
@ -45,4 +64,4 @@ jobs:
|
||||
with:
|
||||
project: main
|
||||
shard: ${{ matrix.shard }}
|
||||
totalShards: 10
|
||||
totalShards: 10
|
||||
|
@ -12,7 +12,7 @@ If you have the motivation and experience with Typescript/Javascript (or are wil
|
||||
|
||||
#### Prerequisites
|
||||
|
||||
- node: 20.13.1
|
||||
- node: 22.14.0
|
||||
- npm: [how to install](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
|
||||
|
||||
#### Running Locally
|
||||
|
11
biome.jsonc
@ -31,7 +31,7 @@
|
||||
"src/overrides.ts",
|
||||
// TODO: these files are too big and complex, ignore them until their respective refactors
|
||||
"src/data/moves/move.ts",
|
||||
"src/data/ability.ts",
|
||||
"src/data/abilities/ability.ts",
|
||||
"src/field/pokemon.ts",
|
||||
|
||||
// this file is just too big:
|
||||
@ -50,7 +50,8 @@
|
||||
"noUndeclaredVariables": "off",
|
||||
"noUnusedVariables": "error",
|
||||
"noSwitchDeclarations": "warn", // TODO: refactor and make this an error
|
||||
"noVoidTypeReturn": "warn" // TODO: Refactor and make this an error
|
||||
"noVoidTypeReturn": "warn", // TODO: Refactor and make this an error
|
||||
"noUnusedImports": "error"
|
||||
},
|
||||
"style": {
|
||||
"noVar": "error",
|
||||
@ -64,7 +65,8 @@
|
||||
"useDefaultParameterLast": "off", // TODO: Fix spots in the codebase where this flag would be triggered, and then enable
|
||||
"useSingleVarDeclarator": "off",
|
||||
"useNodejsImportProtocol": "off",
|
||||
"useTemplate": "off" // string concatenation is faster: https://stackoverflow.com/questions/29055518/are-es6-template-literals-faster-than-string-concatenation
|
||||
"useTemplate": "off", // string concatenation is faster: https://stackoverflow.com/questions/29055518/are-es6-template-literals-faster-than-string-concatenation
|
||||
"noNamespaceImport": "error"
|
||||
},
|
||||
"suspicious": {
|
||||
"noDoubleEquals": "error",
|
||||
@ -98,6 +100,9 @@
|
||||
"rules": {
|
||||
"performance": {
|
||||
"noDelete": "off"
|
||||
},
|
||||
"style": {
|
||||
"noNamespaceImport": "off"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -8,12 +8,6 @@ pre-commit:
|
||||
skip:
|
||||
- merge
|
||||
- rebase
|
||||
|
||||
pre-push:
|
||||
commands:
|
||||
biome-lint:
|
||||
glob: "*.{js,ts,jsx,tsx}"
|
||||
run: npx @biomejs/biome check --write --reporter=summary {push_files} --no-errors-on-unmatched
|
||||
|
||||
post-merge:
|
||||
commands:
|
||||
|
3062
package-lock.json
generated
61
package.json
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "pokemon-rogue-battle",
|
||||
"private": true,
|
||||
"version": "1.7.7",
|
||||
"version": "1.8.4",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"start": "vite",
|
||||
@ -9,10 +9,10 @@
|
||||
"build": "vite build",
|
||||
"build:beta": "vite build --mode beta",
|
||||
"preview": "vite preview",
|
||||
"test": "vitest run --project pre && vitest run --project main",
|
||||
"test:cov": "vitest run --project pre && vitest run --project main --coverage",
|
||||
"test:watch": "vitest run --project pre && vitest watch --project main --coverage",
|
||||
"test:silent": "vitest run --project pre && vitest run --project main --silent",
|
||||
"test": "vitest run",
|
||||
"test:cov": "vitest run --coverage --no-isolate",
|
||||
"test:watch": "vitest watch --coverage --no-isolate",
|
||||
"test:silent": "vitest run --silent --no-isolate",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"eslint": "eslint --fix .",
|
||||
"eslint-ci": "eslint .",
|
||||
@ -29,43 +29,44 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "1.9.4",
|
||||
"@eslint/js": "^9.3.0",
|
||||
"@hpcc-js/wasm": "^2.18.0",
|
||||
"@stylistic/eslint-plugin-ts": "^2.6.0-beta.0",
|
||||
"@eslint/js": "^9.23.0",
|
||||
"@hpcc-js/wasm": "^2.22.4",
|
||||
"@stylistic/eslint-plugin-ts": "^4.1.0",
|
||||
"@types/jsdom": "^21.1.7",
|
||||
"@types/node": "^20.12.13",
|
||||
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.54",
|
||||
"@typescript-eslint/parser": "^8.0.0-alpha.54",
|
||||
"@vitest/coverage-istanbul": "^2.1.9",
|
||||
"@types/node": "^22.13.14",
|
||||
"@typescript-eslint/eslint-plugin": "^8.28.0",
|
||||
"@typescript-eslint/parser": "^8.28.0",
|
||||
"@vitest/coverage-istanbul": "^3.0.9",
|
||||
"dependency-cruiser": "^16.3.10",
|
||||
"eslint": "^9.7.0",
|
||||
"eslint-plugin-import-x": "^4.2.1",
|
||||
"inquirer": "^11.0.2",
|
||||
"jsdom": "^24.0.0",
|
||||
"lefthook": "^1.6.12",
|
||||
"msw": "^2.4.9",
|
||||
"eslint": "^9.23.0",
|
||||
"eslint-plugin-import-x": "^4.9.4",
|
||||
"inquirer": "^12.4.2",
|
||||
"jsdom": "^26.0.0",
|
||||
"lefthook": "^1.11.5",
|
||||
"msw": "^2.7.3",
|
||||
"phaser3spectorjs": "^0.0.8",
|
||||
"typedoc": "^0.26.4",
|
||||
"typescript": "^5.5.3",
|
||||
"typescript-eslint": "^8.0.0-alpha.54",
|
||||
"vite": "^5.4.14",
|
||||
"vite-tsconfig-paths": "^4.3.2",
|
||||
"vitest": "^2.1.9",
|
||||
"typedoc": "^0.28.1",
|
||||
"typescript": "^5.8.2",
|
||||
"typescript-eslint": "^8.28.0",
|
||||
"vite": "^6.2.0",
|
||||
"vite-tsconfig-paths": "^5.1.4",
|
||||
"vitest": "^3.0.9",
|
||||
"vitest-canvas-mock": "^0.3.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@material/material-color-utilities": "^0.2.7",
|
||||
"compare-versions": "^6.1.1",
|
||||
"crypto-js": "^4.2.0",
|
||||
"i18next": "^23.11.1",
|
||||
"i18next-browser-languagedetector": "^7.2.1",
|
||||
"i18next-http-backend": "^2.6.1",
|
||||
"i18next": "^24.2.2",
|
||||
"i18next-browser-languagedetector": "^8.0.4",
|
||||
"i18next-http-backend": "^3.0.2",
|
||||
"i18next-korean-postposition-processor": "^1.0.0",
|
||||
"json-stable-stringify": "^1.1.0",
|
||||
"json-stable-stringify": "^1.2.0",
|
||||
"jszip": "^3.10.1",
|
||||
"phaser": "^3.70.0",
|
||||
"phaser3-rex-plugins": "^1.1.84"
|
||||
"phaser3-rex-plugins": "^1.80.14"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=20.0.0"
|
||||
"node": ">=22.0.0"
|
||||
}
|
||||
}
|
||||
|
BIN
public/audio/bgm/battle_rival_3_afd.mp3
Normal file
BIN
public/audio/bgm/title_afd.mp3
Normal file
@ -4599,8 +4599,6 @@
|
||||
"728",
|
||||
"729",
|
||||
"730",
|
||||
"730_2",
|
||||
"730_2",
|
||||
"747",
|
||||
"748",
|
||||
"753",
|
||||
|
BIN
public/images/events/aprf25-de.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/images/events/aprf25-en.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
public/images/events/aprf25-es-ES.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
public/images/events/aprf25-es-MX.png
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
public/images/events/aprf25-fr.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
public/images/events/aprf25-it.png
Normal file
After Width: | Height: | Size: 39 KiB |
BIN
public/images/events/aprf25-ja.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
public/images/events/aprf25-ko.png
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
public/images/events/aprf25-pt-BR.png
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
public/images/events/aprf25-zh-CN.png
Normal file
After Width: | Height: | Size: 32 KiB |
15378
public/images/items.json
Before Width: | Height: | Size: 57 KiB After Width: | Height: | Size: 54 KiB |
Before Width: | Height: | Size: 686 B After Width: | Height: | Size: 894 B |
Before Width: | Height: | Size: 697 B After Width: | Height: | Size: 915 B |
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 531 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 682 B After Width: | Height: | Size: 682 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 2.8 KiB |
@ -1,41 +1,812 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "2075.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 71,
|
||||
"h": 71
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 71,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 71,
|
||||
"h": 43
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 71,
|
||||
"h": 43
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:0f1bcbf28a4b69c4dc92a48c8faf81da:0130dd5f38c7e72cc16e62dd634dc3a2:732805cb123f88b2d403da0dec709706$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 1, "y": 256, "w": 65, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 65, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 291, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 1, "y": 256, "w": 65, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 65, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 291, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 1, "y": 256, "w": 65, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 65, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 291, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0047.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0048.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0049.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0050.png",
|
||||
"frame": { "x": 346, "y": 89, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0051.png",
|
||||
"frame": { "x": 425, "y": 133, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0052.png",
|
||||
"frame": { "x": 425, "y": 133, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0053.png",
|
||||
"frame": { "x": 425, "y": 133, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0054.png",
|
||||
"frame": { "x": 289, "y": 175, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0055.png",
|
||||
"frame": { "x": 497, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0056.png",
|
||||
"frame": { "x": 1, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0057.png",
|
||||
"frame": { "x": 497, "y": 133, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0058.png",
|
||||
"frame": { "x": 503, "y": 215, "w": 70, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0059.png",
|
||||
"frame": { "x": 73, "y": 215, "w": 69, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 2, "w": 69, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0060.png",
|
||||
"frame": { "x": 486, "y": 46, "w": 68, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 13, "y": 2, "w": 68, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0061.png",
|
||||
"frame": { "x": 210, "y": 45, "w": 67, "h": 44 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 2, "w": 67, "h": 44 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0062.png",
|
||||
"frame": { "x": 1, "y": 45, "w": 66, "h": 46 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 15, "y": 1, "w": 66, "h": 46 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0063.png",
|
||||
"frame": { "x": 278, "y": 45, "w": 67, "h": 44 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 2, "w": 67, "h": 44 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0064.png",
|
||||
"frame": { "x": 284, "y": 131, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 2, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0065.png",
|
||||
"frame": { "x": 143, "y": 215, "w": 69, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 2, "w": 69, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0066.png",
|
||||
"frame": { "x": 281, "y": 216, "w": 70, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0067.png",
|
||||
"frame": { "x": 432, "y": 215, "w": 70, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 70, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0068.png",
|
||||
"frame": { "x": 361, "y": 215, "w": 70, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 70, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0069.png",
|
||||
"frame": { "x": 73, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0070.png",
|
||||
"frame": { "x": 1, "y": 215, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0071.png",
|
||||
"frame": { "x": 145, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0072.png",
|
||||
"frame": { "x": 71, "y": 132, "w": 70, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 70, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0073.png",
|
||||
"frame": { "x": 140, "y": 90, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 2, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0074.png",
|
||||
"frame": { "x": 68, "y": 88, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 2, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0075.png",
|
||||
"frame": { "x": 346, "y": 45, "w": 70, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 2, "w": 70, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0076.png",
|
||||
"frame": { "x": 1, "y": 130, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 2, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0077.png",
|
||||
"frame": { "x": 417, "y": 45, "w": 68, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 68, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0078.png",
|
||||
"frame": { "x": 507, "y": 1, "w": 69, "h": 44 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 69, "h": 44 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0079.png",
|
||||
"frame": { "x": 140, "y": 45, "w": 69, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 69, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0080.png",
|
||||
"frame": { "x": 488, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 2, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0081.png",
|
||||
"frame": { "x": 142, "y": 132, "w": 70, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 2, "w": 70, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0082.png",
|
||||
"frame": { "x": 213, "y": 132, "w": 70, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 2, "w": 70, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0083.png",
|
||||
"frame": { "x": 354, "y": 133, "w": 70, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 70, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0084.png",
|
||||
"frame": { "x": 217, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0085.png",
|
||||
"frame": { "x": 425, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0086.png",
|
||||
"frame": { "x": 212, "y": 90, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0087.png",
|
||||
"frame": { "x": 346, "y": 89, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0088.png",
|
||||
"frame": { "x": 68, "y": 45, "w": 71, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 71, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0089.png",
|
||||
"frame": { "x": 363, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "2075.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 577, "h": 299 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 781 B After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 419 B After Width: | Height: | Size: 473 B |
Before Width: | Height: | Size: 1001 B After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 622 B After Width: | Height: | Size: 666 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 982 B After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 5.6 KiB After Width: | Height: | Size: 3.5 KiB |
@ -1,692 +1,155 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "2038.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 516,
|
||||
"h": 516
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 9,
|
||||
"w": 86,
|
||||
"h": 74
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 86,
|
||||
"h": 74
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"w": 84,
|
||||
"h": 75
|
||||
},
|
||||
"frame": {
|
||||
"x": 86,
|
||||
"y": 0,
|
||||
"w": 84,
|
||||
"h": 75
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 8,
|
||||
"w": 85,
|
||||
"h": 75
|
||||
},
|
||||
"frame": {
|
||||
"x": 170,
|
||||
"y": 0,
|
||||
"w": 85,
|
||||
"h": 75
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 8,
|
||||
"w": 85,
|
||||
"h": 75
|
||||
},
|
||||
"frame": {
|
||||
"x": 255,
|
||||
"y": 0,
|
||||
"w": 85,
|
||||
"h": 75
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"w": 86,
|
||||
"h": 75
|
||||
},
|
||||
"frame": {
|
||||
"x": 340,
|
||||
"y": 0,
|
||||
"w": 86,
|
||||
"h": 75
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"w": 86,
|
||||
"h": 75
|
||||
},
|
||||
"frame": {
|
||||
"x": 426,
|
||||
"y": 0,
|
||||
"w": 86,
|
||||
"h": 75
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"w": 88,
|
||||
"h": 75
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 75,
|
||||
"w": 88,
|
||||
"h": 75
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"w": 87,
|
||||
"h": 75
|
||||
},
|
||||
"frame": {
|
||||
"x": 88,
|
||||
"y": 75,
|
||||
"w": 87,
|
||||
"h": 75
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 7,
|
||||
"w": 89,
|
||||
"h": 76
|
||||
},
|
||||
"frame": {
|
||||
"x": 175,
|
||||
"y": 75,
|
||||
"w": 89,
|
||||
"h": 76
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 8,
|
||||
"w": 87,
|
||||
"h": 77
|
||||
},
|
||||
"frame": {
|
||||
"x": 264,
|
||||
"y": 75,
|
||||
"w": 87,
|
||||
"h": 77
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 6,
|
||||
"w": 90,
|
||||
"h": 77
|
||||
},
|
||||
"frame": {
|
||||
"x": 351,
|
||||
"y": 75,
|
||||
"w": 90,
|
||||
"h": 77
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 8,
|
||||
"w": 86,
|
||||
"h": 78
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 150,
|
||||
"w": 86,
|
||||
"h": 78
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 9,
|
||||
"w": 85,
|
||||
"h": 78
|
||||
},
|
||||
"frame": {
|
||||
"x": 86,
|
||||
"y": 150,
|
||||
"w": 85,
|
||||
"h": 78
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 9,
|
||||
"w": 85,
|
||||
"h": 78
|
||||
},
|
||||
"frame": {
|
||||
"x": 171,
|
||||
"y": 151,
|
||||
"w": 85,
|
||||
"h": 78
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"w": 91,
|
||||
"h": 78
|
||||
},
|
||||
"frame": {
|
||||
"x": 256,
|
||||
"y": 152,
|
||||
"w": 91,
|
||||
"h": 78
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 8,
|
||||
"w": 86,
|
||||
"h": 79
|
||||
},
|
||||
"frame": {
|
||||
"x": 347,
|
||||
"y": 152,
|
||||
"w": 86,
|
||||
"h": 79
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 8,
|
||||
"w": 86,
|
||||
"h": 79
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 228,
|
||||
"w": 86,
|
||||
"h": 79
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 8,
|
||||
"w": 85,
|
||||
"h": 79
|
||||
},
|
||||
"frame": {
|
||||
"x": 86,
|
||||
"y": 228,
|
||||
"w": 85,
|
||||
"h": 79
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 8,
|
||||
"w": 85,
|
||||
"h": 79
|
||||
},
|
||||
"frame": {
|
||||
"x": 171,
|
||||
"y": 229,
|
||||
"w": 85,
|
||||
"h": 79
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 7,
|
||||
"w": 85,
|
||||
"h": 79
|
||||
},
|
||||
"frame": {
|
||||
"x": 256,
|
||||
"y": 230,
|
||||
"w": 85,
|
||||
"h": 79
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 4,
|
||||
"y": 4,
|
||||
"w": 90,
|
||||
"h": 79
|
||||
},
|
||||
"frame": {
|
||||
"x": 341,
|
||||
"y": 231,
|
||||
"w": 90,
|
||||
"h": 79
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 5,
|
||||
"w": 85,
|
||||
"h": 80
|
||||
},
|
||||
"frame": {
|
||||
"x": 431,
|
||||
"y": 231,
|
||||
"w": 85,
|
||||
"h": 80
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 4,
|
||||
"w": 86,
|
||||
"h": 80
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 307,
|
||||
"w": 86,
|
||||
"h": 80
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 2,
|
||||
"w": 87,
|
||||
"h": 81
|
||||
},
|
||||
"frame": {
|
||||
"x": 86,
|
||||
"y": 308,
|
||||
"w": 87,
|
||||
"h": 81
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 4,
|
||||
"y": 2,
|
||||
"w": 90,
|
||||
"h": 81
|
||||
},
|
||||
"frame": {
|
||||
"x": 173,
|
||||
"y": 309,
|
||||
"w": 90,
|
||||
"h": 81
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 88,
|
||||
"h": 82
|
||||
},
|
||||
"frame": {
|
||||
"x": 263,
|
||||
"y": 310,
|
||||
"w": 88,
|
||||
"h": 82
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"w": 90,
|
||||
"h": 82
|
||||
},
|
||||
"frame": {
|
||||
"x": 351,
|
||||
"y": 311,
|
||||
"w": 90,
|
||||
"h": 82
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 88,
|
||||
"h": 83
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 389,
|
||||
"w": 88,
|
||||
"h": 83
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 89,
|
||||
"h": 83
|
||||
},
|
||||
"frame": {
|
||||
"x": 88,
|
||||
"y": 390,
|
||||
"w": 89,
|
||||
"h": 83
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 0,
|
||||
"w": 89,
|
||||
"h": 83
|
||||
},
|
||||
"frame": {
|
||||
"x": 177,
|
||||
"y": 392,
|
||||
"w": 89,
|
||||
"h": 83
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 0,
|
||||
"w": 89,
|
||||
"h": 83
|
||||
},
|
||||
"frame": {
|
||||
"x": 266,
|
||||
"y": 393,
|
||||
"w": 89,
|
||||
"h": 83
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 94,
|
||||
"h": 87
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 0,
|
||||
"w": 90,
|
||||
"h": 83
|
||||
},
|
||||
"frame": {
|
||||
"x": 355,
|
||||
"y": 393,
|
||||
"w": 90,
|
||||
"h": 83
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:3548b7394d2a2d4370b938ffb12dbe96:5ccdea89bf7be09a529efae090aea261:51bcdbb4fa6a1a9e90a83c2a4132ee1b$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 157, "y": 194, "w": 76, "h": 65 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 76, "h": 65 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 164, "y": 128, "w": 80, "h": 66 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 80, "h": 66 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 244, "y": 128, "w": 80, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 80, "h": 64 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 0, "y": 130, "w": 80, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 80, "h": 64 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 78, "y": 194, "w": 79, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 2, "w": 79, "h": 64 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 170, "y": 0, "w": 84, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 84, "h": 64 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 254, "y": 0, "w": 84, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 84, "h": 64 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 86, "y": 0, "w": 84, "h": 65 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 0, "w": 84, "h": 65 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 170, "y": 64, "w": 84, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 84, "h": 64 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 0, "y": 0, "w": 86, "h": 65 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 86, "h": 65 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 254, "y": 64, "w": 84, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 84, "h": 64 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 0, "y": 65, "w": 82, "h": 65 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 0, "w": 82, "h": 65 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 80, "y": 130, "w": 80, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 80, "h": 64 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 82, "y": 65, "w": 82, "h": 65 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 82, "h": 65 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 244, "y": 192, "w": 80, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 80, "h": 64 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 0, "y": 194, "w": 78, "h": 65 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 78, "h": 65 },
|
||||
"sourceSize": { "w": 86, "h": 67 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "2038.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 338, "h": 259 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 13 KiB |
@ -1,272 +1,425 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "2074.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 142,
|
||||
"h": 142
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 16,
|
||||
"w": 63,
|
||||
"h": 28
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 63,
|
||||
"h": 28
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 12,
|
||||
"w": 61,
|
||||
"h": 30
|
||||
},
|
||||
"frame": {
|
||||
"x": 63,
|
||||
"y": 0,
|
||||
"w": 61,
|
||||
"h": 30
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 12,
|
||||
"w": 61,
|
||||
"h": 30
|
||||
},
|
||||
"frame": {
|
||||
"x": 63,
|
||||
"y": 0,
|
||||
"w": 61,
|
||||
"h": 30
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"w": 57,
|
||||
"h": 32
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 28,
|
||||
"w": 57,
|
||||
"h": 32
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"w": 57,
|
||||
"h": 32
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 28,
|
||||
"w": 57,
|
||||
"h": 32
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 56,
|
||||
"h": 35
|
||||
},
|
||||
"frame": {
|
||||
"x": 57,
|
||||
"y": 30,
|
||||
"w": 56,
|
||||
"h": 35
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 56,
|
||||
"h": 35
|
||||
},
|
||||
"frame": {
|
||||
"x": 57,
|
||||
"y": 30,
|
||||
"w": 56,
|
||||
"h": 35
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 5,
|
||||
"y": 0,
|
||||
"w": 52,
|
||||
"h": 37
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 60,
|
||||
"w": 52,
|
||||
"h": 37
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 5,
|
||||
"y": 0,
|
||||
"w": 52,
|
||||
"h": 37
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 60,
|
||||
"w": 52,
|
||||
"h": 37
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 8,
|
||||
"y": 0,
|
||||
"w": 47,
|
||||
"h": 40
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 97,
|
||||
"w": 47,
|
||||
"h": 40
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 8,
|
||||
"y": 0,
|
||||
"w": 48,
|
||||
"h": 39
|
||||
},
|
||||
"frame": {
|
||||
"x": 47,
|
||||
"y": 97,
|
||||
"w": 48,
|
||||
"h": 39
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 8,
|
||||
"y": 0,
|
||||
"w": 47,
|
||||
"h": 39
|
||||
},
|
||||
"frame": {
|
||||
"x": 95,
|
||||
"y": 65,
|
||||
"w": 47,
|
||||
"h": 39
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:17eb999510749cb5bf44945ce0e6af23:03e8369dbf7ea1c1898cee8cc1b989b3:ad137687a877f55f096b7447bfdfe295$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 120, "y": 124, "w": 55, "h": 30 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 4, "w": 55, "h": 30 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 65, "y": 94, "w": 58, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 7, "w": 58, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 124, "y": 95, "w": 60, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 11, "w": 60, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 1, "y": 93, "w": 63, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 14, "w": 63, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 255, "y": 33, "w": 65, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 13, "w": 65, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 1, "y": 33, "w": 67, "h": 30 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 12, "w": 67, "h": 30 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 255, "y": 63, "w": 65, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 11, "w": 65, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 135, "y": 66, "w": 64, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 11, "w": 64, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 260, "y": 122, "w": 62, "h": 27 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 10, "w": 62, "h": 27 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 1, "y": 122, "w": 60, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 8, "w": 60, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 62, "y": 124, "w": 57, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 6, "w": 57, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 120, "y": 124, "w": 55, "h": 30 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 4, "w": 55, "h": 30 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 65, "y": 94, "w": 58, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 7, "w": 58, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 124, "y": 95, "w": 60, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 11, "w": 60, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 1, "y": 93, "w": 63, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 14, "w": 63, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 255, "y": 33, "w": 65, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 13, "w": 65, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 1, "y": 33, "w": 67, "h": 30 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 12, "w": 67, "h": 30 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 255, "y": 63, "w": 65, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 11, "w": 65, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 135, "y": 66, "w": 64, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 11, "w": 64, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 185, "y": 123, "w": 62, "h": 27 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 10, "w": 62, "h": 27 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 1, "y": 122, "w": 60, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 8, "w": 60, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 62, "y": 124, "w": 57, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 6, "w": 57, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 120, "y": 124, "w": 55, "h": 30 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 4, "w": 55, "h": 30 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 65, "y": 94, "w": 58, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 7, "w": 58, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 124, "y": 95, "w": 60, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 11, "w": 60, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 1, "y": 93, "w": 63, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 14, "w": 63, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 255, "y": 33, "w": 65, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 13, "w": 65, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 1, "y": 33, "w": 67, "h": 30 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 12, "w": 67, "h": 30 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 255, "y": 63, "w": 65, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 11, "w": 65, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 135, "y": 66, "w": 64, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 11, "w": 64, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 185, "y": 123, "w": 62, "h": 27 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 10, "w": 62, "h": 27 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 1, "y": 122, "w": 60, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 8, "w": 60, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 62, "y": 124, "w": 57, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 6, "w": 57, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 120, "y": 124, "w": 55, "h": 30 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 4, "w": 55, "h": 30 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 200, "y": 93, "w": 59, "h": 29 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 8, "w": 59, "h": 29 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 260, "y": 93, "w": 61, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 11, "w": 61, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 69, "y": 65, "w": 65, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 11, "w": 65, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 1, "y": 64, "w": 67, "h": 28 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 6, "w": 67, "h": 28 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 72, "y": 1, "w": 69, "h": 31 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 69, "h": 31 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 70, "h": 31 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 70, "h": 31 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 142, "y": 1, "w": 69, "h": 31 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 69, "h": 31 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 212, "y": 1, "w": 67, "h": 31 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 2, "w": 67, "h": 31 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 280, "y": 1, "w": 65, "h": 31 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 3, "w": 65, "h": 31 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 131, "y": 33, "w": 63, "h": 30 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 4, "w": 63, "h": 30 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 69, "y": 33, "w": 61, "h": 31 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 4, "w": 61, "h": 31 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 195, "y": 33, "w": 59, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 4, "w": 59, "h": 32 },
|
||||
"sourceSize": { "w": 70, "h": 42 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "2074.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 346, "h": 155 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 19 KiB |
@ -1,272 +1,173 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "2088.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 114,
|
||||
"h": 114
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 60,
|
||||
"h": 36
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 60,
|
||||
"h": 36
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 60,
|
||||
"h": 36
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 60,
|
||||
"h": 36
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 60,
|
||||
"h": 36
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 60,
|
||||
"h": 36
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 60,
|
||||
"h": 36
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 60,
|
||||
"h": 36
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 58,
|
||||
"h": 37
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 36,
|
||||
"w": 58,
|
||||
"h": 37
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 58,
|
||||
"h": 37
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 36,
|
||||
"w": 58,
|
||||
"h": 37
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 58,
|
||||
"h": 37
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 36,
|
||||
"w": 58,
|
||||
"h": 37
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 58,
|
||||
"h": 37
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 36,
|
||||
"w": 58,
|
||||
"h": 37
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 0,
|
||||
"w": 56,
|
||||
"h": 37
|
||||
},
|
||||
"frame": {
|
||||
"x": 58,
|
||||
"y": 36,
|
||||
"w": 56,
|
||||
"h": 37
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 0,
|
||||
"w": 56,
|
||||
"h": 37
|
||||
},
|
||||
"frame": {
|
||||
"x": 58,
|
||||
"y": 36,
|
||||
"w": 56,
|
||||
"h": 37
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 2,
|
||||
"w": 60,
|
||||
"h": 35
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 73,
|
||||
"w": 60,
|
||||
"h": 35
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 60,
|
||||
"h": 37
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 2,
|
||||
"w": 60,
|
||||
"h": 35
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 73,
|
||||
"w": 60,
|
||||
"h": 35
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:7d65358280b6fd8fd0351d1933aec389:4371ea558d78deb87b5511996f658c0c:b8df8f168871505f42fdc6d3c5b106f0$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 53, "y": 114, "w": 51, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 0, "w": 51, "h": 40 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 231, "y": 75, "w": 52, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 0, "w": 52, "h": 40 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 111, "y": 79, "w": 53, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 53, "h": 39 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 57, "y": 75, "w": 54, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 54, "h": 39 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 234, "y": 36, "w": 56, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 56, "h": 39 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 0, "y": 75, "w": 57, "h": 37 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 3, "w": 57, "h": 37 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 59, "y": 38, "w": 58, "h": 37 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 3, "w": 58, "h": 37 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 0, "y": 38, "w": 59, "h": 37 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 3, "w": 59, "h": 37 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 234, "y": 0, "w": 61, "h": 36 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 61, "h": 36 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 0, "y": 0, "w": 60, "h": 38 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 60, "h": 38 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 60, "y": 0, "w": 59, "h": 38 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 59, "h": 38 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 176, "y": 0, "w": 58, "h": 38 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 2, "w": 58, "h": 38 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 119, "y": 0, "w": 57, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 57, "h": 39 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 176, "y": 38, "w": 55, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 55, "h": 39 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 0, "y": 112, "w": 53, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 53, "h": 39 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 117, "y": 39, "w": 53, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 0, "w": 53, "h": 40 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 170, "y": 77, "w": 52, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 0, "w": 52, "h": 40 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 222, "y": 115, "w": 51, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 0, "w": 51, "h": 40 },
|
||||
"sourceSize": { "w": 61, "h": 40 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "2088.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 295, "h": 155 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 5.5 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 36 KiB |
@ -1,272 +1,191 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "746-school.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 268,
|
||||
"h": 268
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 0,
|
||||
"w": 95,
|
||||
"h": 73
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 95,
|
||||
"h": 73
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 0,
|
||||
"w": 94,
|
||||
"h": 73
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 73,
|
||||
"w": 94,
|
||||
"h": 73
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 0,
|
||||
"w": 94,
|
||||
"h": 73
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 73,
|
||||
"w": 94,
|
||||
"h": 73
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"w": 93,
|
||||
"h": 71
|
||||
},
|
||||
"frame": {
|
||||
"x": 95,
|
||||
"y": 0,
|
||||
"w": 93,
|
||||
"h": 71
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"w": 93,
|
||||
"h": 71
|
||||
},
|
||||
"frame": {
|
||||
"x": 95,
|
||||
"y": 0,
|
||||
"w": 93,
|
||||
"h": 71
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 3,
|
||||
"w": 92,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 146,
|
||||
"w": 92,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 3,
|
||||
"w": 92,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 146,
|
||||
"w": 92,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"w": 91,
|
||||
"h": 67
|
||||
},
|
||||
"frame": {
|
||||
"x": 95,
|
||||
"y": 71,
|
||||
"w": 91,
|
||||
"h": 67
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"w": 91,
|
||||
"h": 67
|
||||
},
|
||||
"frame": {
|
||||
"x": 95,
|
||||
"y": 71,
|
||||
"w": 91,
|
||||
"h": 67
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 6,
|
||||
"w": 91,
|
||||
"h": 66
|
||||
},
|
||||
"frame": {
|
||||
"x": 94,
|
||||
"y": 138,
|
||||
"w": 91,
|
||||
"h": 66
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 6,
|
||||
"w": 91,
|
||||
"h": 66
|
||||
},
|
||||
"frame": {
|
||||
"x": 94,
|
||||
"y": 138,
|
||||
"w": 91,
|
||||
"h": 66
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 102,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 7,
|
||||
"w": 90,
|
||||
"h": 64
|
||||
},
|
||||
"frame": {
|
||||
"x": 92,
|
||||
"y": 204,
|
||||
"w": 90,
|
||||
"h": 64
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:081944ebe67318e4a46f44a408e2f8ad:3d1760eb9efa179defcf703a35dde41b:10f3c9d1f1118f8f9f6e40f37a0eb499$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 408, "y": 257, "w": 96, "h": 83 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 7, "w": 94, "h": 81 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 411, "y": 174, "w": 99, "h": 83 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 97, "h": 81 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 311, "y": 175, "w": 97, "h": 84 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 95, "h": 82 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 411, "y": 89, "w": 101, "h": 85 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 5, "w": 99, "h": 83 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 311, "y": 89, "w": 100, "h": 86 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 4, "w": 98, "h": 84 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 213, "y": 1, "w": 104, "h": 88 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 3, "w": 102, "h": 86 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 317, "y": 1, "w": 104, "h": 88 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 102, "h": 86 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 106, "h": 89 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 104, "h": 87 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 421, "y": 1, "w": 104, "h": 88 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 102, "h": 86 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 107, "y": 1, "w": 106, "h": 88 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 104, "h": 86 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 107, "y": 89, "w": 102, "h": 87 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 100, "h": 85 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 209, "y": 89, "w": 102, "h": 87 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 100, "h": 85 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 1, "y": 90, "w": 97, "h": 85 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 95, "h": 83 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 1, "y": 175, "w": 96, "h": 85 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 2, "w": 94, "h": 83 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 289, "y": 259, "w": 92, "h": 85 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 3, "w": 90, "h": 83 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 192, "y": 260, "w": 91, "h": 84 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 5, "w": 89, "h": 82 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 194, "y": 176, "w": 95, "h": 84 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 93, "h": 82 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 1, "y": 260, "w": 93, "h": 83 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 91, "h": 81 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 97, "y": 259, "w": 95, "h": 83 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 6, "w": 93, "h": 81 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 97, "y": 176, "w": 97, "h": 83 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 7, "w": 95, "h": 81 },
|
||||
"sourceSize": { "w": 104, "h": 89 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "746-school.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 526, "h": 345 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 19 KiB |
@ -1,272 +1,641 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "746.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 134,
|
||||
"h": 134
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 28,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 56,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 56,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 84,
|
||||
"w": 46,
|
||||
"h": 28
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 27,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 27,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 54,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 81,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 28
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 2,
|
||||
"w": 46,
|
||||
"h": 26
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 108,
|
||||
"w": 46,
|
||||
"h": 26
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:ed115b8b30c0e1285651afd1dde147d7:57cc34f3531fe7225c220731468a52f3:1a4f7e535d823202c4828f963d5b4404$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 42, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 44, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 46, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 47, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 47, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 46, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 44, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 42, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 42, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 44, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 46, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 47, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 47, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 46, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 44, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 40, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 42, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 40, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 75, "y": 26, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 42, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 44, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 46, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 47, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0047.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0048.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0049.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0050.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0051.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 47, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0052.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 46, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0053.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 44, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0054.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0055.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0056.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0057.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 41, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0058.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 42, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0059.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 44, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0060.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 46, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0061.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 47, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0062.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0063.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0064.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0065.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0066.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 48, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0067.png",
|
||||
"frame": { "x": 79, "y": 1, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 47, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0068.png",
|
||||
"frame": { "x": 1, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 46, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0069.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 39, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 44, "w": 37, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0070.png",
|
||||
"frame": { "x": 36, "y": 51, "w": 35, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 28, "y": 42, "w": 33, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "746.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 119, "h": 77 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 900 B |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 57 KiB |
@ -1,188 +1,101 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "2037.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 150,
|
||||
"h": 150
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 61,
|
||||
"h": 50
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"frame": {
|
||||
"x": 61,
|
||||
"y": 0,
|
||||
"w": 61,
|
||||
"h": 50
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 60,
|
||||
"h": 50
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 50,
|
||||
"w": 60,
|
||||
"h": 50
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 60,
|
||||
"h": 50
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 50,
|
||||
"w": 60,
|
||||
"h": 50
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 59,
|
||||
"h": 50
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 100,
|
||||
"w": 59,
|
||||
"h": 50
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 59,
|
||||
"h": 50
|
||||
},
|
||||
"frame": {
|
||||
"x": 59,
|
||||
"y": 100,
|
||||
"w": 59,
|
||||
"h": 50
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 59,
|
||||
"h": 50
|
||||
},
|
||||
"frame": {
|
||||
"x": 59,
|
||||
"y": 100,
|
||||
"w": 59,
|
||||
"h": 50
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 61,
|
||||
"h": 50
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 2,
|
||||
"w": 61,
|
||||
"h": 48
|
||||
},
|
||||
"frame": {
|
||||
"x": 60,
|
||||
"y": 50,
|
||||
"w": 61,
|
||||
"h": 48
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:b0b51d6624079d060ef8895666c251a5:a4d98b9d3c1f076758f8595cceddc8c2:c679847d1c2ddf91caeaa5ebb76a6664$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 0, "y": 48, "w": 58, "h": 49 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 58, "h": 49 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 58, "y": 48, "w": 58, "h": 48 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 58, "h": 48 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 116, "y": 48, "w": 58, "h": 48 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 58, "h": 48 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 58, "y": 96, "w": 56, "h": 46 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 3, "w": 56, "h": 46 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 174, "y": 95, "w": 58, "h": 46 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 3, "w": 58, "h": 46 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 174, "y": 49, "w": 60, "h": 46 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 3, "w": 60, "h": 46 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 0, "y": 0, "w": 63, "h": 48 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 63, "h": 48 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 63, "y": 0, "w": 62, "h": 48 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 62, "h": 48 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 125, "y": 0, "w": 61, "h": 48 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 61, "h": 48 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 186, "y": 0, "w": 59, "h": 49 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 0, "w": 59, "h": 49 },
|
||||
"sourceSize": { "w": 63, "h": 49 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "2037.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 245, "h": 142 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 3.5 KiB |
@ -1,692 +1,155 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "2038.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 514,
|
||||
"h": 514
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 10,
|
||||
"y": 8,
|
||||
"w": 101,
|
||||
"h": 63
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 101,
|
||||
"h": 63
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 9,
|
||||
"y": 8,
|
||||
"w": 102,
|
||||
"h": 64
|
||||
},
|
||||
"frame": {
|
||||
"x": 101,
|
||||
"y": 0,
|
||||
"w": 102,
|
||||
"h": 64
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 12,
|
||||
"y": 7,
|
||||
"w": 99,
|
||||
"h": 64
|
||||
},
|
||||
"frame": {
|
||||
"x": 203,
|
||||
"y": 0,
|
||||
"w": 99,
|
||||
"h": 64
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 12,
|
||||
"y": 7,
|
||||
"w": 99,
|
||||
"h": 64
|
||||
},
|
||||
"frame": {
|
||||
"x": 302,
|
||||
"y": 0,
|
||||
"w": 99,
|
||||
"h": 64
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 12,
|
||||
"y": 7,
|
||||
"w": 98,
|
||||
"h": 64
|
||||
},
|
||||
"frame": {
|
||||
"x": 401,
|
||||
"y": 0,
|
||||
"w": 98,
|
||||
"h": 64
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"w": 98,
|
||||
"h": 65
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 63,
|
||||
"w": 98,
|
||||
"h": 65
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 6,
|
||||
"w": 111,
|
||||
"h": 65
|
||||
},
|
||||
"frame": {
|
||||
"x": 98,
|
||||
"y": 64,
|
||||
"w": 111,
|
||||
"h": 65
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 6,
|
||||
"w": 111,
|
||||
"h": 65
|
||||
},
|
||||
"frame": {
|
||||
"x": 209,
|
||||
"y": 64,
|
||||
"w": 111,
|
||||
"h": 65
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 8,
|
||||
"w": 104,
|
||||
"h": 65
|
||||
},
|
||||
"frame": {
|
||||
"x": 320,
|
||||
"y": 64,
|
||||
"w": 104,
|
||||
"h": 65
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"w": 97,
|
||||
"h": 65
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 128,
|
||||
"w": 97,
|
||||
"h": 65
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 12,
|
||||
"y": 6,
|
||||
"w": 97,
|
||||
"h": 65
|
||||
},
|
||||
"frame": {
|
||||
"x": 97,
|
||||
"y": 129,
|
||||
"w": 97,
|
||||
"h": 65
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 5,
|
||||
"w": 111,
|
||||
"h": 66
|
||||
},
|
||||
"frame": {
|
||||
"x": 194,
|
||||
"y": 129,
|
||||
"w": 111,
|
||||
"h": 66
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 6,
|
||||
"w": 111,
|
||||
"h": 66
|
||||
},
|
||||
"frame": {
|
||||
"x": 305,
|
||||
"y": 129,
|
||||
"w": 111,
|
||||
"h": 66
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 11,
|
||||
"y": 5,
|
||||
"w": 98,
|
||||
"h": 66
|
||||
},
|
||||
"frame": {
|
||||
"x": 416,
|
||||
"y": 129,
|
||||
"w": 98,
|
||||
"h": 66
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"w": 110,
|
||||
"h": 66
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 194,
|
||||
"w": 110,
|
||||
"h": 66
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 7,
|
||||
"w": 108,
|
||||
"h": 66
|
||||
},
|
||||
"frame": {
|
||||
"x": 110,
|
||||
"y": 195,
|
||||
"w": 108,
|
||||
"h": 66
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 5,
|
||||
"y": 7,
|
||||
"w": 106,
|
||||
"h": 66
|
||||
},
|
||||
"frame": {
|
||||
"x": 218,
|
||||
"y": 195,
|
||||
"w": 106,
|
||||
"h": 66
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 4,
|
||||
"w": 109,
|
||||
"h": 67
|
||||
},
|
||||
"frame": {
|
||||
"x": 324,
|
||||
"y": 195,
|
||||
"w": 109,
|
||||
"h": 67
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 6,
|
||||
"w": 111,
|
||||
"h": 67
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 261,
|
||||
"w": 111,
|
||||
"h": 67
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 10,
|
||||
"y": 3,
|
||||
"w": 98,
|
||||
"h": 68
|
||||
},
|
||||
"frame": {
|
||||
"x": 111,
|
||||
"y": 261,
|
||||
"w": 98,
|
||||
"h": 68
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 2,
|
||||
"w": 108,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 209,
|
||||
"y": 261,
|
||||
"w": 108,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 10,
|
||||
"y": 2,
|
||||
"w": 98,
|
||||
"h": 69
|
||||
},
|
||||
"frame": {
|
||||
"x": 317,
|
||||
"y": 262,
|
||||
"w": 98,
|
||||
"h": 69
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 9,
|
||||
"y": 1,
|
||||
"w": 98,
|
||||
"h": 70
|
||||
},
|
||||
"frame": {
|
||||
"x": 415,
|
||||
"y": 262,
|
||||
"w": 98,
|
||||
"h": 70
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"w": 106,
|
||||
"h": 70
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 328,
|
||||
"w": 106,
|
||||
"h": 70
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 8,
|
||||
"y": 0,
|
||||
"w": 99,
|
||||
"h": 71
|
||||
},
|
||||
"frame": {
|
||||
"x": 106,
|
||||
"y": 329,
|
||||
"w": 99,
|
||||
"h": 71
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"w": 106,
|
||||
"h": 70
|
||||
},
|
||||
"frame": {
|
||||
"x": 205,
|
||||
"y": 330,
|
||||
"w": 106,
|
||||
"h": 70
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 8,
|
||||
"y": 0,
|
||||
"w": 98,
|
||||
"h": 71
|
||||
},
|
||||
"frame": {
|
||||
"x": 311,
|
||||
"y": 331,
|
||||
"w": 98,
|
||||
"h": 71
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 7,
|
||||
"y": 0,
|
||||
"w": 100,
|
||||
"h": 71
|
||||
},
|
||||
"frame": {
|
||||
"x": 409,
|
||||
"y": 332,
|
||||
"w": 100,
|
||||
"h": 71
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 6,
|
||||
"y": 0,
|
||||
"w": 102,
|
||||
"h": 71
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 398,
|
||||
"w": 102,
|
||||
"h": 71
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 5,
|
||||
"y": 0,
|
||||
"w": 103,
|
||||
"h": 71
|
||||
},
|
||||
"frame": {
|
||||
"x": 102,
|
||||
"y": 400,
|
||||
"w": 103,
|
||||
"h": 71
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 5,
|
||||
"y": 0,
|
||||
"w": 104,
|
||||
"h": 71
|
||||
},
|
||||
"frame": {
|
||||
"x": 205,
|
||||
"y": 400,
|
||||
"w": 104,
|
||||
"h": 71
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 111,
|
||||
"h": 73
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 4,
|
||||
"y": 0,
|
||||
"w": 106,
|
||||
"h": 71
|
||||
},
|
||||
"frame": {
|
||||
"x": 309,
|
||||
"y": 403,
|
||||
"w": 106,
|
||||
"h": 71
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:612f29cb3148d3054c6515b49bbbd16a:431a4f3395b63c472bcd1086332ea861:51bcdbb4fa6a1a9e90a83c2a4132ee1b$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 232, "y": 198, "w": 74, "h": 62 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 2, "w": 74, "h": 62 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 155, "y": 132, "w": 78, "h": 65 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 2, "w": 78, "h": 65 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 156, "y": 66, "w": 78, "h": 66 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 3, "w": 78, "h": 66 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 78, "y": 134, "w": 77, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 3, "w": 77, "h": 64 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 75, "y": 198, "w": 77, "h": 61 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 3, "w": 77, "h": 61 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 0, "y": 134, "w": 78, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 3, "w": 78, "h": 64 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 234, "y": 67, "w": 78, "h": 66 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 3, "w": 78, "h": 66 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 233, "y": 133, "w": 78, "h": 65 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 2, "w": 78, "h": 65 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 155, "y": 197, "w": 77, "h": 63 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 77, "h": 63 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 156, "y": 0, "w": 79, "h": 66 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 1, "w": 79, "h": 66 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 0, "y": 0, "w": 78, "h": 68 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 78, "h": 68 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 235, "y": 0, "w": 77, "h": 67 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 0, "w": 77, "h": 67 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 0, "y": 198, "w": 75, "h": 64 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 0, "w": 75, "h": 64 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 0, "y": 68, "w": 78, "h": 66 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 78, "h": 66 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 78, "y": 0, "w": 78, "h": 68 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 78, "h": 68 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 78, "y": 68, "w": 77, "h": 66 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 77, "h": 66 },
|
||||
"sourceSize": { "w": 82, "h": 69 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "2038.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 312, "h": 262 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 10 KiB |
@ -1,230 +1,398 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "2074.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 108,
|
||||
"h": 108
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 11,
|
||||
"w": 57,
|
||||
"h": 32
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 57,
|
||||
"h": 32
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 9,
|
||||
"w": 56,
|
||||
"h": 33
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 32,
|
||||
"w": 56,
|
||||
"h": 33
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 9,
|
||||
"w": 56,
|
||||
"h": 33
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 32,
|
||||
"w": 56,
|
||||
"h": 33
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"w": 54,
|
||||
"h": 34
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 65,
|
||||
"w": 54,
|
||||
"h": 34
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"w": 54,
|
||||
"h": 34
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 65,
|
||||
"w": 54,
|
||||
"h": 34
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 4,
|
||||
"w": 51,
|
||||
"h": 34
|
||||
},
|
||||
"frame": {
|
||||
"x": 57,
|
||||
"y": 0,
|
||||
"w": 51,
|
||||
"h": 34
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 4,
|
||||
"w": 51,
|
||||
"h": 34
|
||||
},
|
||||
"frame": {
|
||||
"x": 57,
|
||||
"y": 0,
|
||||
"w": 51,
|
||||
"h": 34
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"w": 51,
|
||||
"h": 35
|
||||
},
|
||||
"frame": {
|
||||
"x": 56,
|
||||
"y": 34,
|
||||
"w": 51,
|
||||
"h": 35
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"w": 51,
|
||||
"h": 35
|
||||
},
|
||||
"frame": {
|
||||
"x": 56,
|
||||
"y": 34,
|
||||
"w": 51,
|
||||
"h": 35
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 57,
|
||||
"h": 43
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 0,
|
||||
"w": 51,
|
||||
"h": 34
|
||||
},
|
||||
"frame": {
|
||||
"x": 54,
|
||||
"y": 69,
|
||||
"w": 51,
|
||||
"h": 34
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:fdf01f8cadd6949c73cf35b994ae45ba:5c71945b84f6c35163c62bc518f57fb5:ad137687a877f55f096b7447bfdfe295$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 63, "y": 100, "w": 59, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 59, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 195, "y": 99, "w": 61, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 5, "w": 61, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 131, "y": 68, "w": 64, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 9, "w": 64, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 203, "y": 67, "w": 65, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 12, "w": 65, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 1, "y": 35, "w": 66, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 12, "w": 66, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 1, "y": 67, "w": 66, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 12, "w": 66, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 1, "y": 35, "w": 66, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 10, "w": 66, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 203, "y": 67, "w": 65, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 8, "w": 65, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 131, "y": 68, "w": 64, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 6, "w": 64, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 195, "y": 99, "w": 61, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 4, "w": 61, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 63, "y": 100, "w": 59, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 59, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 195, "y": 99, "w": 61, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 5, "w": 61, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 131, "y": 68, "w": 64, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 9, "w": 64, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 203, "y": 67, "w": 65, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 12, "w": 65, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 1, "y": 35, "w": 66, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 12, "w": 66, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 1, "y": 67, "w": 66, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 12, "w": 66, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 1, "y": 35, "w": 66, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 10, "w": 66, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 203, "y": 67, "w": 65, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 8, "w": 65, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 131, "y": 68, "w": 64, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 6, "w": 64, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 195, "y": 99, "w": 61, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 4, "w": 61, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 63, "y": 100, "w": 59, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 59, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 195, "y": 99, "w": 61, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 5, "w": 61, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 131, "y": 68, "w": 64, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 9, "w": 64, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 203, "y": 67, "w": 65, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 12, "w": 65, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 1, "y": 35, "w": 66, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 12, "w": 66, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 1, "y": 67, "w": 66, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 12, "w": 66, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 1, "y": 35, "w": 66, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 10, "w": 66, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 203, "y": 67, "w": 65, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 8, "w": 65, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 131, "y": 68, "w": 64, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 6, "w": 64, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 195, "y": 99, "w": 61, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 4, "w": 61, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 63, "y": 100, "w": 59, "h": 32 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 59, "h": 32 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 268, "y": 68, "w": 62, "h": 33 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 5, "w": 62, "h": 33 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 67, "y": 67, "w": 64, "h": 33 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 8, "w": 64, "h": 33 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 203, "y": 34, "w": 66, "h": 33 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 8, "w": 66, "h": 33 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 275, "y": 1, "w": 67, "h": 33 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 4, "w": 67, "h": 33 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 71, "y": 1, "w": 68, "h": 33 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 68, "h": 33 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 70, "h": 34 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 70, "h": 34 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 139, "y": 1, "w": 68, "h": 33 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 0, "w": 68, "h": 33 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 207, "y": 1, "w": 68, "h": 33 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 0, "w": 68, "h": 33 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 71, "y": 34, "w": 67, "h": 33 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 0, "w": 67, "h": 33 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 138, "y": 34, "w": 65, "h": 34 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 65, "h": 34 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 269, "y": 34, "w": 64, "h": 34 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 64, "h": 34 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 1, "y": 99, "w": 62, "h": 33 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 1, "w": 62, "h": 33 },
|
||||
"sourceSize": { "w": 71, "h": 44 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "2074.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 343, "h": 133 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 4.1 KiB |
@ -1,188 +1,812 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "2075.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 131,
|
||||
"h": 131
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 44
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": false,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 67,
|
||||
"h": 44
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 67,
|
||||
"h": 43
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 44,
|
||||
"w": 67,
|
||||
"h": 43
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 65,
|
||||
"h": 44
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 87,
|
||||
"w": 65,
|
||||
"h": 44
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 65,
|
||||
"h": 44
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 87,
|
||||
"w": 65,
|
||||
"h": 44
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 4,
|
||||
"y": 0,
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"frame": {
|
||||
"x": 65,
|
||||
"y": 87,
|
||||
"w": 63,
|
||||
"h": 44
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 4,
|
||||
"y": 0,
|
||||
"w": 63,
|
||||
"h": 44
|
||||
},
|
||||
"frame": {
|
||||
"x": 65,
|
||||
"y": 87,
|
||||
"w": 63,
|
||||
"h": 44
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 67,
|
||||
"h": 44
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 6,
|
||||
"y": 0,
|
||||
"w": 61,
|
||||
"h": 44
|
||||
},
|
||||
"frame": {
|
||||
"x": 67,
|
||||
"y": 0,
|
||||
"w": 61,
|
||||
"h": 44
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:0b4413911e6a410c634fb5925e19fb50:d060400f7fc28ab507bb0c4ef37df223:732805cb123f88b2d403da0dec709706$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 1, "y": 256, "w": 65, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 65, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 291, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 1, "y": 256, "w": 65, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 65, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 291, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 1, "y": 256, "w": 65, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 65, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 213, "y": 215, "w": 67, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 0, "w": 67, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 418, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 219, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 291, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0047.png",
|
||||
"frame": { "x": 74, "y": 1, "w": 72, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 72, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0048.png",
|
||||
"frame": { "x": 435, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0049.png",
|
||||
"frame": { "x": 147, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0050.png",
|
||||
"frame": { "x": 346, "y": 89, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0051.png",
|
||||
"frame": { "x": 425, "y": 133, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0052.png",
|
||||
"frame": { "x": 425, "y": 133, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0053.png",
|
||||
"frame": { "x": 425, "y": 133, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0054.png",
|
||||
"frame": { "x": 289, "y": 175, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0055.png",
|
||||
"frame": { "x": 497, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0056.png",
|
||||
"frame": { "x": 1, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0057.png",
|
||||
"frame": { "x": 497, "y": 133, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0058.png",
|
||||
"frame": { "x": 503, "y": 215, "w": 70, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0059.png",
|
||||
"frame": { "x": 73, "y": 215, "w": 69, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 2, "w": 69, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0060.png",
|
||||
"frame": { "x": 486, "y": 46, "w": 68, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 13, "y": 2, "w": 68, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0061.png",
|
||||
"frame": { "x": 210, "y": 45, "w": 67, "h": 44 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 2, "w": 67, "h": 44 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0062.png",
|
||||
"frame": { "x": 1, "y": 45, "w": 66, "h": 46 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 15, "y": 1, "w": 66, "h": 46 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0063.png",
|
||||
"frame": { "x": 278, "y": 45, "w": 67, "h": 44 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 14, "y": 2, "w": 67, "h": 44 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0064.png",
|
||||
"frame": { "x": 284, "y": 131, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 12, "y": 2, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0065.png",
|
||||
"frame": { "x": 143, "y": 215, "w": 69, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 11, "y": 2, "w": 69, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0066.png",
|
||||
"frame": { "x": 281, "y": 216, "w": 70, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 10, "y": 2, "w": 70, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0067.png",
|
||||
"frame": { "x": 432, "y": 215, "w": 70, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 9, "y": 2, "w": 70, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0068.png",
|
||||
"frame": { "x": 361, "y": 215, "w": 70, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 8, "y": 2, "w": 70, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0069.png",
|
||||
"frame": { "x": 73, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0070.png",
|
||||
"frame": { "x": 1, "y": 215, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0071.png",
|
||||
"frame": { "x": 145, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0072.png",
|
||||
"frame": { "x": 71, "y": 132, "w": 70, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 70, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0073.png",
|
||||
"frame": { "x": 140, "y": 90, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 2, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0074.png",
|
||||
"frame": { "x": 68, "y": 88, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 2, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0075.png",
|
||||
"frame": { "x": 346, "y": 45, "w": 70, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 2, "w": 70, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0076.png",
|
||||
"frame": { "x": 1, "y": 130, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 2, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0077.png",
|
||||
"frame": { "x": 417, "y": 45, "w": 68, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 68, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0078.png",
|
||||
"frame": { "x": 507, "y": 1, "w": 69, "h": 44 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 0, "w": 69, "h": 44 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0079.png",
|
||||
"frame": { "x": 140, "y": 45, "w": 69, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 69, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0080.png",
|
||||
"frame": { "x": 488, "y": 90, "w": 69, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 2, "w": 69, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0081.png",
|
||||
"frame": { "x": 142, "y": 132, "w": 70, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 2, "w": 70, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0082.png",
|
||||
"frame": { "x": 213, "y": 132, "w": 70, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 2, "w": 70, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0083.png",
|
||||
"frame": { "x": 354, "y": 133, "w": 70, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 70, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0084.png",
|
||||
"frame": { "x": 217, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0085.png",
|
||||
"frame": { "x": 425, "y": 174, "w": 71, "h": 40 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 40 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0086.png",
|
||||
"frame": { "x": 212, "y": 90, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0087.png",
|
||||
"frame": { "x": 346, "y": 89, "w": 71, "h": 41 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 2, "w": 71, "h": 41 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0088.png",
|
||||
"frame": { "x": 68, "y": 45, "w": 71, "h": 42 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 1, "w": 71, "h": 42 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0089.png",
|
||||
"frame": { "x": 363, "y": 1, "w": 71, "h": 43 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 71, "h": 43 },
|
||||
"sourceSize": { "w": 81, "h": 47 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "2075.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 577, "h": 299 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 14 KiB |
@ -1,230 +1,173 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "2088.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 123,
|
||||
"h": 123
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 47,
|
||||
"h": 41
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 47,
|
||||
"h": 41
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 47,
|
||||
"h": 41
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 47,
|
||||
"h": 41
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 48,
|
||||
"h": 40
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 41,
|
||||
"w": 48,
|
||||
"h": 40
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
},
|
||||
"frame": {
|
||||
"x": 47,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
},
|
||||
"frame": {
|
||||
"x": 47,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
},
|
||||
"frame": {
|
||||
"x": 48,
|
||||
"y": 41,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
},
|
||||
"frame": {
|
||||
"x": 48,
|
||||
"y": 41,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 81,
|
||||
"w": 45,
|
||||
"h": 41
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 44,
|
||||
"h": 41
|
||||
},
|
||||
"frame": {
|
||||
"x": 45,
|
||||
"y": 82,
|
||||
"w": 44,
|
||||
"h": 41
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 48,
|
||||
"h": 41
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 44,
|
||||
"h": 41
|
||||
},
|
||||
"frame": {
|
||||
"x": 45,
|
||||
"y": 82,
|
||||
"w": 44,
|
||||
"h": 41
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:e484c868865b60e304dbc1fe02c5c476:0f1d94616ba91025b99edb3470c9c467:b8df8f168871505f42fdc6d3c5b106f0$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 49, "y": 111, "w": 48, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 48, "h": 39 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 0, "y": 75, "w": 49, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 49, "h": 39 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 216, "y": 75, "w": 50, "h": 38 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 50, "h": 38 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 54, "y": 73, "w": 52, "h": 38 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 52, "h": 38 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 0, "y": 37, "w": 54, "h": 38 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 54, "h": 38 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 111, "y": 38, "w": 54, "h": 37 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 2, "w": 54, "h": 37 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 169, "y": 0, "w": 56, "h": 37 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 2, "w": 56, "h": 37 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 225, "y": 0, "w": 56, "h": 37 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 2, "w": 56, "h": 37 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 54, "y": 37, "w": 57, "h": 36 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 3, "w": 57, "h": 36 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 0, "y": 0, "w": 57, "h": 37 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 2, "w": 57, "h": 37 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 57, "y": 0, "w": 57, "h": 37 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 2, "w": 57, "h": 37 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 169, "y": 37, "w": 55, "h": 37 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 2, "w": 55, "h": 37 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 114, "y": 0, "w": 55, "h": 38 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 1, "w": 55, "h": 38 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 224, "y": 37, "w": 53, "h": 38 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 1, "w": 53, "h": 38 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 165, "y": 74, "w": 51, "h": 38 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 1, "w": 51, "h": 38 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 106, "y": 75, "w": 49, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 49, "h": 39 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 155, "y": 112, "w": 48, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 48, "h": 39 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 203, "y": 113, "w": 48, "h": 39 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 5, "y": 0, "w": 48, "h": 39 },
|
||||
"sourceSize": { "w": 58, "h": 39 },
|
||||
"duration": 100
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "2088.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 281, "h": 152 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 5.3 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 31 KiB |
@ -1,230 +1,171 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "746-school.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 261,
|
||||
"h": 261
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 97,
|
||||
"h": 80
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 97,
|
||||
"h": 80
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 96,
|
||||
"h": 81
|
||||
},
|
||||
"frame": {
|
||||
"x": 97,
|
||||
"y": 0,
|
||||
"w": 96,
|
||||
"h": 81
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 96,
|
||||
"h": 81
|
||||
},
|
||||
"frame": {
|
||||
"x": 97,
|
||||
"y": 0,
|
||||
"w": 96,
|
||||
"h": 81
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"w": 93,
|
||||
"h": 80
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 80,
|
||||
"w": 93,
|
||||
"h": 80
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"w": 93,
|
||||
"h": 80
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 80,
|
||||
"w": 93,
|
||||
"h": 80
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 5,
|
||||
"w": 87,
|
||||
"h": 79
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 160,
|
||||
"w": 87,
|
||||
"h": 79
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 5,
|
||||
"w": 87,
|
||||
"h": 79
|
||||
},
|
||||
"frame": {
|
||||
"x": 87,
|
||||
"y": 160,
|
||||
"w": 87,
|
||||
"h": 79
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 89,
|
||||
"h": 78
|
||||
},
|
||||
"frame": {
|
||||
"x": 93,
|
||||
"y": 81,
|
||||
"w": 89,
|
||||
"h": 78
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"w": 89,
|
||||
"h": 78
|
||||
},
|
||||
"frame": {
|
||||
"x": 93,
|
||||
"y": 81,
|
||||
"w": 89,
|
||||
"h": 78
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 97,
|
||||
"h": 84
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 7,
|
||||
"w": 87,
|
||||
"h": 77
|
||||
},
|
||||
"frame": {
|
||||
"x": 174,
|
||||
"y": 159,
|
||||
"w": 87,
|
||||
"h": 77
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:30cb66415aef361ed227b9b95c6e059e:691d98e44070749abe13d4a0a6ceb7a7:10f3c9d1f1118f8f9f6e40f37a0eb499$"
|
||||
}
|
||||
{ "frames": {
|
||||
"0001.png": {
|
||||
"frame": { "x": 279, "y": 206, "w": 96, "h": 97 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 7, "w": 96, "h": 97 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0002.png": {
|
||||
"frame": { "x": 288, "y": 108, "w": 96, "h": 98 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 6, "w": 96, "h": 98 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0003.png": {
|
||||
"frame": { "x": 95, "y": 107, "w": 94, "h": 100 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 6, "w": 94, "h": 100 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0004.png": {
|
||||
"frame": { "x": 94, "y": 207, "w": 93, "h": 99 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 6, "w": 93, "h": 99 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0005.png": {
|
||||
"frame": { "x": 1, "y": 104, "w": 94, "h": 102 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 5, "w": 94, "h": 102 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0006.png": {
|
||||
"frame": { "x": 189, "y": 203, "w": 90, "h": 104 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 7, "y": 5, "w": 90, "h": 104 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0007.png": {
|
||||
"frame": { "x": 283, "y": 1, "w": 92, "h": 105 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 4, "w": 92, "h": 105 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0008.png": {
|
||||
"frame": { "x": 375, "y": 1, "w": 90, "h": 107 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 6, "y": 4, "w": 90, "h": 107 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0009.png": {
|
||||
"frame": { "x": 97, "y": 1, "w": 93, "h": 106 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 2, "w": 93, "h": 106 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0010.png": {
|
||||
"frame": { "x": 190, "y": 1, "w": 93, "h": 105 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 2, "w": 93, "h": 105 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0011.png": {
|
||||
"frame": { "x": 1, "y": 1, "w": 96, "h": 103 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 0, "w": 96, "h": 103 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0012.png": {
|
||||
"frame": { "x": 1, "y": 206, "w": 93, "h": 100 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 4, "y": 0, "w": 93, "h": 100 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0013.png": {
|
||||
"frame": { "x": 384, "y": 108, "w": 96, "h": 98 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 0, "w": 96, "h": 98 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0014.png": {
|
||||
"frame": { "x": 279, "y": 303, "w": 95, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 0, "w": 95, "h": 96 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0015.png": {
|
||||
"frame": { "x": 96, "y": 307, "w": 97, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 1, "w": 97, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0016.png": {
|
||||
"frame": { "x": 375, "y": 301, "w": 98, "h": 94 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 3, "w": 98, "h": 94 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0017.png": {
|
||||
"frame": { "x": 1, "y": 306, "w": 95, "h": 96 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 2, "y": 4, "w": 95, "h": 96 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0018.png": {
|
||||
"frame": { "x": 375, "y": 206, "w": 97, "h": 95 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 0, "y": 5, "w": 97, "h": 95 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0019.png": {
|
||||
"frame": { "x": 374, "y": 395, "w": 94, "h": 97 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 3, "y": 6, "w": 94, "h": 97 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
},
|
||||
"0020.png": {
|
||||
"frame": { "x": 190, "y": 106, "w": 98, "h": 97 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 1, "y": 7, "w": 98, "h": 97 },
|
||||
"sourceSize": { "w": 100, "h": 111 },
|
||||
"duration": 100
|
||||
}
|
||||
},
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "746-school.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 481, "h": 493 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 19 KiB |
@ -1,314 +1,641 @@
|
||||
{
|
||||
"textures": [
|
||||
{
|
||||
"image": "746.png",
|
||||
"format": "RGBA8888",
|
||||
"size": {
|
||||
"w": 132,
|
||||
"h": 132
|
||||
},
|
||||
"scale": 1,
|
||||
"frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 2,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 46,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 46,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"w": 41,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 91,
|
||||
"y": 0,
|
||||
"w": 41,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"w": 45,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 27,
|
||||
"w": 45,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 45,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 45,
|
||||
"y": 27,
|
||||
"w": 45,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 2,
|
||||
"w": 42,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 90,
|
||||
"y": 27,
|
||||
"w": 42,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 2,
|
||||
"y": 0,
|
||||
"w": 42,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 90,
|
||||
"y": 27,
|
||||
"w": 42,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"w": 44,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 54,
|
||||
"w": 44,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 44,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 0,
|
||||
"y": 81,
|
||||
"w": 44,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 3,
|
||||
"w": 45,
|
||||
"h": 26
|
||||
},
|
||||
"frame": {
|
||||
"x": 44,
|
||||
"y": 54,
|
||||
"w": 45,
|
||||
"h": 26
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"w": 43,
|
||||
"h": 27
|
||||
},
|
||||
"frame": {
|
||||
"x": 89,
|
||||
"y": 54,
|
||||
"w": 43,
|
||||
"h": 27
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 1,
|
||||
"y": 0,
|
||||
"w": 44,
|
||||
"h": 26
|
||||
},
|
||||
"frame": {
|
||||
"x": 44,
|
||||
"y": 80,
|
||||
"w": 44,
|
||||
"h": 26
|
||||
}
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"sourceSize": {
|
||||
"w": 46,
|
||||
"h": 29
|
||||
},
|
||||
"spriteSourceSize": {
|
||||
"x": 3,
|
||||
"y": 3,
|
||||
"w": 41,
|
||||
"h": 26
|
||||
},
|
||||
"frame": {
|
||||
"x": 44,
|
||||
"y": 106,
|
||||
"w": 41,
|
||||
"h": 26
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.codeandweb.com/texturepacker",
|
||||
"version": "3.0",
|
||||
"smartupdate": "$TexturePacker:SmartUpdate:93d33f4a5b3862a769ebca021367624a:963e4390d528585dcdd0e7068e5ec568:1a4f7e535d823202c4828f963d5b4404$"
|
||||
}
|
||||
{ "frames": [
|
||||
{
|
||||
"filename": "0001.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0002.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 38, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0003.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0004.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 38, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0005.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0006.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 39, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0007.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 41, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0008.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 43, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0009.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 44, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0010.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0011.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 45, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0012.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0013.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 45, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0014.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0015.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 44, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0016.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 43, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0017.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 41, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0018.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 39, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0019.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0020.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 38, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0021.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0022.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 38, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0023.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0024.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 39, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0025.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 41, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0026.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 43, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0027.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 44, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0028.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0029.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 45, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0030.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0031.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 45, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0032.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0033.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 44, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0034.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 43, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0035.png",
|
||||
"frame": { "x": 1, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 41, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0036.png",
|
||||
"frame": { "x": 1, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 39, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0037.png",
|
||||
"frame": { "x": 41, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0038.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 38, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0039.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0040.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 38, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0041.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0042.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 39, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0043.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 41, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0044.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 43, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0045.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 44, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0046.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0047.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 45, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0048.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0049.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 45, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0050.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0051.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 44, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0052.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 43, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0053.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 41, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0054.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 38, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0055.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0056.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 38, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0057.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 38, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0058.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 39, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0059.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 41, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0060.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 43, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0061.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 44, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0062.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0063.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 45, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0064.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0065.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 45, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0066.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 45, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0067.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 44, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0068.png",
|
||||
"frame": { "x": 37, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 43, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0069.png",
|
||||
"frame": { "x": 81, "y": 1, "w": 40, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 26, "y": 41, "w": 38, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
},
|
||||
{
|
||||
"filename": "0070.png",
|
||||
"frame": { "x": 73, "y": 26, "w": 36, "h": 25 },
|
||||
"rotated": false,
|
||||
"trimmed": true,
|
||||
"spriteSourceSize": { "x": 30, "y": 39, "w": 34, "h": 23 },
|
||||
"sourceSize": { "w": 96, "h": 96 },
|
||||
"duration": 110
|
||||
}
|
||||
],
|
||||
"meta": {
|
||||
"app": "https://www.aseprite.org/",
|
||||
"version": "1.3.13-x64",
|
||||
"image": "746.png",
|
||||
"format": "I8",
|
||||
"size": { "w": 122, "h": 52 },
|
||||
"scale": "1"
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 728 B |
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 23 KiB |